-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 28, 2024 at 08:15 AM
-- Server version: 8.0.36-cll-lve
-- PHP Version: 8.1.28

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `qualstre_qualstrDB`
--

-- --------------------------------------------------------

--
-- Table structure for table `qs_actionscheduler_actions`
--

CREATE TABLE `qs_actionscheduler_actions` (
  `action_id` bigint UNSIGNED NOT NULL,
  `hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `attempts` int NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_actionscheduler_claims`
--

CREATE TABLE `qs_actionscheduler_claims` (
  `claim_id` bigint UNSIGNED NOT NULL,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_actionscheduler_groups`
--

CREATE TABLE `qs_actionscheduler_groups` (
  `group_id` bigint UNSIGNED NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_actionscheduler_groups`
--

INSERT INTO `qs_actionscheduler_groups` (`group_id`, `slug`) VALUES
(1, 'action-scheduler-migration'),
(2, 'wc-admin-data'),
(3, 'woocommerce-db-updates');

-- --------------------------------------------------------

--
-- Table structure for table `qs_actionscheduler_logs`
--

CREATE TABLE `qs_actionscheduler_logs` (
  `log_id` bigint UNSIGNED NOT NULL,
  `action_id` bigint UNSIGNED NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_appointments`
--

CREATE TABLE `qs_bookit_appointments` (
  `id` int UNSIGNED NOT NULL,
  `service_id` int UNSIGNED NOT NULL,
  `staff_id` int UNSIGNED NOT NULL,
  `customer_id` int UNSIGNED NOT NULL,
  `date_timestamp` int NOT NULL,
  `start_time` int NOT NULL,
  `end_time` int NOT NULL,
  `price` decimal(10,2) NOT NULL DEFAULT '0.00',
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `notes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_from` enum('front','back') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'front',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_categories`
--

CREATE TABLE `qs_bookit_categories` (
  `id` int UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_coupons`
--

CREATE TABLE `qs_bookit_coupons` (
  `id` int UNSIGNED NOT NULL,
  `discount` int UNSIGNED NOT NULL,
  `code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `usage_limit` int UNSIGNED DEFAULT NULL,
  `once_per_user` int UNSIGNED DEFAULT NULL,
  `services` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `staff` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_customers`
--

CREATE TABLE `qs_bookit_customers` (
  `id` int UNSIGNED NOT NULL,
  `wp_user_id` bigint DEFAULT NULL,
  `full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_discounts`
--

CREATE TABLE `qs_bookit_discounts` (
  `id` int UNSIGNED NOT NULL,
  `discount` int UNSIGNED NOT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `active_from` datetime NOT NULL,
  `active_till` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_payments`
--

CREATE TABLE `qs_bookit_payments` (
  `id` int UNSIGNED NOT NULL,
  `appointment_id` int UNSIGNED NOT NULL,
  `coupon_id` int UNSIGNED DEFAULT NULL,
  `discount_id` int UNSIGNED DEFAULT NULL,
  `type` enum('locally','paypal','stripe','woocommerce','free') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` enum('pending','cancelled','rejected','complete') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `total` decimal(10,2) NOT NULL DEFAULT '0.00',
  `tax` decimal(10,2) DEFAULT '0.00',
  `transaction` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `notes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `paid_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_services`
--

CREATE TABLE `qs_bookit_services` (
  `id` int UNSIGNED NOT NULL,
  `category_id` int UNSIGNED DEFAULT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `duration` int NOT NULL DEFAULT '900',
  `price` decimal(10,2) NOT NULL DEFAULT '0.00',
  `icon_id` int UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_staff`
--

CREATE TABLE `qs_bookit_staff` (
  `id` int UNSIGNED NOT NULL,
  `full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `wp_user_id` bigint DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_staff_services`
--

CREATE TABLE `qs_bookit_staff_services` (
  `id` int UNSIGNED NOT NULL,
  `staff_id` int UNSIGNED NOT NULL,
  `service_id` int UNSIGNED NOT NULL,
  `price` decimal(10,2) NOT NULL DEFAULT '0.00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_bookit_staff_working_hours`
--

CREATE TABLE `qs_bookit_staff_working_hours` (
  `id` int UNSIGNED NOT NULL,
  `staff_id` int UNSIGNED NOT NULL,
  `weekday` int DEFAULT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `break_from` time DEFAULT NULL,
  `break_to` time DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_commentmeta`
--

CREATE TABLE `qs_commentmeta` (
  `meta_id` bigint UNSIGNED NOT NULL,
  `comment_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_comments`
--

CREATE TABLE `qs_comments` (
  `comment_ID` bigint UNSIGNED NOT NULL,
  `comment_post_ID` bigint UNSIGNED NOT NULL DEFAULT '0',
  `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `user_id` bigint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_comments`
--

INSERT INTO `qs_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2021-04-05 11:41:38', '2021-04-05 11:41:38', '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://gravatar.com\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0),
(2, 1, 'Briceacifs', 'maxcrauler@netbolezny.ru', '', '5.165.15.3', '2022-04-08 18:12:45', '2022-04-08 18:12:45', 'фото натяжной потолок \r\n<a href=\"http://www.google.td/url?q=http://1remont-kvartir-ekb.ru\" rel=\"nofollow ugc\">http://google.cc/url?q=http://1remont-kvartir-ekb.ru</a>', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49', 'comment', 0, 0),
(3, 738, 'BusinessLoansNow', 'noreply@businessloansnow.info', 'http://BusinessLoansNow.info', '176.111.173.52', '2022-06-10 22:15:37', '2022-06-10 22:15:37', 'Hi, do you know that http://BusinessLoansNow.info can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://BusinessLoansNow.info \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://BusinessLoansNow.info \r\n \r\nHave a good day, \r\nThe Business Loans Now Team \r\n \r\nunsubscribe/remove - http://BusinessLoansNow.info/r.php?url=qualstream.net&amp;id=111', 0, '0', 'Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.16', 'comment', 0, 0),
(4, 738, 'GetMyBusinessFundingNow', 'noreply@getmybusinessfundingnow.com', 'http://GetMyBusinessFundingNow.com', '193.169.255.207', '2022-06-15 02:54:40', '2022-06-15 02:54:40', 'Quicker and Easier than the SBA, http://GetMyBusinessFundingNow.com can get your business a loan for $2K-350,000 With low-credit and without collateral. \r\n \r\nUse our fast form to See exactly how much you can get, No-Cost: \r\n \r\nhttp://GetMyBusinessFundingNow.com \r\n \r\nIf you\'ve been in business for at least one year you are already pre-qualified. Our Quick service means funding can be completed within 48 hours. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds have no Restrictions, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://GetMyBusinessFundingNow.com \r\n \r\nHave a great day, \r\nThe Get My Business Funding Now Team \r\n \r\nremove here - http://GetMyBusinessFundingNow.com/r.php?url=qualstream.net&amp;id=108', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.13014 YaBrowser/13.12.1599.13014 Safari/537.36', 'comment', 0, 0),
(5, 738, 'SmartBusinessFunding', 'noreply@smartbusinessfunding.site', 'http://SmartBusinessFunding.site', '176.111.173.110', '2022-06-22 22:35:03', '2022-06-22 22:35:03', 'Hi, do you know that http://SmartBusinessFunding.site can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://SmartBusinessFunding.site \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://SmartBusinessFunding.site \r\n \r\nHave a good day, \r\nThe Smart Business Funding Team \r\n \r\nunsubscribe/remove - http://SmartBusinessFunding.site/r.php?url=qualstream.net&amp;id=113', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36', 'comment', 0, 0),
(6, 738, 'Ultimate', 'noreply@getmorebusinessleadsnow.com', 'http://GetMoreBusinessLeadsNow.com', '176.111.173.52', '2022-06-29 06:07:54', '2022-06-29 06:07:54', 'Hi, would you like more business leads at a lower cost? Currently http://GetMoreBusinessLeadsNow.com is offering our popular unlimited lead generation software package - at a reduced price for a limited time. \r\n \r\nDownload and install now to be building databases of leads in minutes: \r\n \r\nhttp://GetMoreBusinessLeadsNow.com \r\n \r\nThe Ultimate Lead Generation Pack works by automatically visting yellow page directories and building a database according to your search terms. Other software in the pack then finds emails, phone numbers, and other details for that database. The results can be used for email, cold-calling, direct mail, or to sell immediately - priced per lead. Runs on Windows, Mac, and Linux with multiple job and VPN/proxy support. Similar software retails for over $100 with less features. \r\n \r\nThis pack is only available on sale as a short promotional offer, please download now if at all interested. \r\n \r\nClick Here: http://GetMoreBusinessLeadsNow.com \r\n \r\nHave a Great Day, \r\nThe Ultimate Lead Generation Pack Team \r\n \r\nunsubscribe/remove Here: http://getmorebusinessleadsnow.com/r.php?url=qualstream.net&amp;id=ulg36', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.12785 YaBrowser/13.12.1599.12785 Safari/537.36', 'comment', 0, 0),
(7, 738, 'BusinessFunds365', 'noreply@businessfunds365.com', 'http://BusinessFunds365.com', '176.111.173.110', '2022-07-06 15:31:55', '2022-07-06 15:31:55', 'Faster and Easier than the SBA, http://BusinessFunds365.com can get your business a loan for $2K-350,000 With low-credit and without collateral. \r\n \r\nUse our 1 minute form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://BusinessFunds365.com \r\n \r\nIf you\'ve been established for at least 1 year you are already pre-qualified. Our Fast service means funding can be finished within 48 hours. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the whole amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://BusinessFunds365.com \r\n \r\nHave a great day, \r\nThe Business Funds 365 Team \r\n \r\nremove here - http://BusinessFunds365.com/r.php?url=qualstream.net&amp;id=115', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36 OPR/18.0.1284.68', 'comment', 0, 0),
(8, 738, 'GetMyBusinessFundedNow', 'noreply@getmybusinessfundednow.pro', 'http://GetMyBusinessFundedNow.pro', '176.111.173.110', '2022-07-12 16:57:00', '2022-07-12 16:57:00', 'Hi, do you know that http://GetMyBusinessFundedNow.pro can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://GetMyBusinessFundedNow.pro \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://GetMyBusinessFundedNow.pro \r\n \r\nHave a good day, \r\nThe Get My Business Funded Now Team \r\n \r\nunsubscribe/remove - http://GetMyBusinessFundedNow.pro/r.php?url=qualstream.net&amp;id=116', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36 OPR/19.0.1326.63', 'comment', 0, 0),
(9, 1, 'DanielDuh', 'himik22faerbaol@glutaral-aldegid-50.store', 'http://[url=][/url%5D', '84.38.188.16', '2022-07-21 01:50:50', '2022-07-21 01:50:50', 'глутаровый альдегид от производителя \r\n<a href=\"https://glutaral-aldegid-50.ru/\" / rel=\"nofollow ugc\">http://glutaral-aldegid-50.ru/</a>', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', 'comment', 0, 0),
(10, 1076, 'דירה דיסקרטית בנתניה', 'b51j9c5n@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '45.136.228.2', '2022-08-02 02:49:49', '2022-08-02 02:49:49', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 OPR/34.0.2036.25 (Edition Campaign 38)', 'comment', 0, 0),
(11, 131, 'דירה דיסקרטית בנתניה', 'f78848pg1@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '45.136.228.244', '2022-08-02 02:49:54', '2022-08-02 02:49:54', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5', 'comment', 0, 0),
(12, 133, 'דירה דיסקרטית בנתניה', 'ct2n4c@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '113.30.155.158', '2022-08-02 02:50:00', '2022-08-02 02:50:00', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 OPR/34.0.2036.50', 'comment', 0, 0),
(13, 135, 'דירה דיסקרטית בנתניה', 'jm8qmt@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '156.238.7.80', '2022-08-02 02:50:07', '2022-08-02 02:50:07', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 YaBrowser/15.9.2403.3043 Safari/537.36', 'comment', 0, 0),
(14, 738, 'דירה דיסקרטית בנתניה', 'p56t2s@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '154.92.114.161', '2022-08-02 02:50:12', '2022-08-02 02:50:12', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.28) Gecko/20120306 Firefox/3.6.28', 'comment', 0, 0),
(15, 1, 'דירה דיסקרטית בנתניה', '18j5ya@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A0%D7%AA%D7%A0%D7%99%D7%94/', '45.153.22.26', '2022-08-02 02:50:16', '2022-08-02 02:50:16', 'The next time I read a blog, Hopefully it doesnt disappoint me as much as this particular one. After all, Yes, it was my choice to read, nonetheless I actually thought you would probably have something interesting to say. All I hear is a bunch of crying about something that you could possibly fix if you were not too busy looking for attention.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36', 'comment', 0, 0),
(16, 738, 'SmartBusinessFunding', 'noreply@smartbusinessfunding.site', 'http://SmartBusinessFunding.site', '176.111.173.110', '2022-08-05 10:29:35', '2022-08-05 10:29:35', 'Quicker and Simpler than the SBA, http://SmartBusinessFunding.site can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our fast form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://SmartBusinessFunding.site \r\n \r\nIf you\'ve been established for at least 1 year you are already pre-qualified. Our Quick service means funding can be finished within 48hrs. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://SmartBusinessFunding.site \r\n \r\nHave a great day, \r\nThe Smart Business Funding Team \r\n \r\nremove here - http://SmartBusinessFunding.site/r.php?url=qualstream.net&amp;id=124', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36 OPR/18.0.1284.68', 'comment', 0, 0),
(17, 1076, 'דירות דיסקרטיות במרכז', '627qxpf1t6@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%AA%D7%9C-%D7%90%D7%91%D7%99%D7%91/', '45.140.13.151', '2022-08-06 11:37:45', '2022-08-06 11:37:45', 'Im very happy to uncover this great site. I need to to thank you for ones time for this fantastic read!! I definitely enjoyed every bit of it and I have you book marked to see new things in your blog.', 0, '0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24', 'comment', 0, 0),
(18, 131, 'דירות דיסקרטיות במרכז', '57hi629rh@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%AA%D7%9C-%D7%90%D7%91%D7%99%D7%91/', '45.137.80.10', '2022-08-06 11:37:52', '2022-08-06 11:37:52', 'Im very happy to uncover this great site. I need to to thank you for ones time for this fantastic read!! I definitely enjoyed every bit of it and I have you book marked to see new things in your blog.', 0, '0', 'Opera/9.01 (Windows NT 5.1; U; en)', 'comment', 0, 0),
(19, 738, 'GetMyBusinessFundedNow', 'noreply@getmybusinessfundednow.info', 'http://GetMyBusinessFundedNow.info', '176.111.173.110', '2022-08-09 09:56:50', '2022-08-09 09:56:50', 'Hi, do you know that http://GetMyBusinessFundedNow.info can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://GetMyBusinessFundedNow.info \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 180K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://GetMyBusinessFundedNow.info \r\n \r\nHave a good day, \r\nThe Get My Business Funded Now Team \r\n \r\nunsubscribe/remove - http://GetMyBusinessFundedNow.info/r.php?url=qualstream.net&amp;id=124', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.12785 YaBrowser/13.12.1599.12785 Safari/537.36', 'comment', 0, 0),
(20, 1076, 'מגוון רחב של דירות דיסקרטיות', 'cuha2z2@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '5.157.130.178', '2022-08-25 20:30:23', '2022-08-25 20:30:23', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36 OPR/34.0.2036.47', 'comment', 0, 0),
(21, 131, 'מגוון רחב של דירות דיסקרטיות', '3gnm5g@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '154.85.126.34', '2022-08-25 20:30:46', '2022-08-25 20:30:46', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36', 'comment', 0, 0),
(22, 133, 'מגוון רחב של דירות דיסקרטיות', 'ue6z9j7yqt@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '154.85.124.216', '2022-08-25 20:30:53', '2022-08-25 20:30:53', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 6.2; rv:20.0) Gecko/20121202 Firefox/24.0', 'comment', 0, 0),
(23, 135, 'מגוון רחב של דירות דיסקרטיות', 'k9asf7uc0s@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '45.72.55.58', '2022-08-25 20:31:05', '2022-08-25 20:31:05', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36', 'comment', 0, 0),
(24, 738, 'מגוון רחב של דירות דיסקרטיות', 'zkxllo8wn@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '45.72.55.58', '2022-08-25 20:31:26', '2022-08-25 20:31:26', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36', 'comment', 0, 0),
(25, 1, 'מגוון רחב של דירות דיסקרטיות', '3eqdah901@gmail.com', 'https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA/', '45.8.203.141', '2022-08-25 20:31:38', '2022-08-25 20:31:38', 'Very good post. I certainly appreciate this site. Continue the good work!', 0, '0', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11 MRCHROME', 'comment', 0, 0),
(26, 1076, 'עיסוי אירוטי-israelnightclub', 'oolibrhv9@gmail.com', 'https://israelnightclub.com/apartments/%d7%a2%d7%99%d7%a1%d7%95%d7%99-%d7%90%d7%99%d7%a8%d7%95%d7%98%d7%99/', '45.192.143.94', '2022-09-11 14:57:55', '2022-09-11 14:57:55', 'Can I simply say what a comfort to uncover somebody who genuinely knows what they are discussing on the net. You definitely realize how to bring a problem to light and make it important. More and more people have to look at this and understand this side of the story. I cant believe you are not more popular given that you most certainly have the gift.', 0, '0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.57.5 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.4', 'comment', 0, 0),
(27, 133, 'Mark', 'plenbipije1977@gmail.com', 'https://tnr69-00.top/', '188.134.68.55', '2022-09-12 07:51:09', '2022-09-12 07:51:09', 'Thanks for your blog, nice to read. Do not stop.', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36', 'comment', 0, 0),
(28, 1076, 'דירות דיסקרטיות בגבעתיים-israelnightclub.com', 'gr86r8k9@gmail.com', 'https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%92%d7%91%d7%a2%d7%aa%d7%99%d7%99%d7%9d/', '23.229.125.246', '2022-09-18 13:44:02', '2022-09-18 13:44:02', 'I was very pleased to uncover this great site. I need to to thank you for ones time due to this fantastic read!! I definitely enjoyed every bit of it and I have you book-marked to see new things in your website.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.10.2526.80 Safari/537.36', 'comment', 0, 0),
(29, 738, 'FindFastBusinessFunds', 'noreply@find-fast-business-funds.site', 'http://Find-Fast-Business-Funds.site', '193.169.254.47', '2022-09-23 07:54:17', '2022-09-23 07:54:17', 'Faster and Easier than the SBA, http://Find-Fast-Business-Funds.site can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our short form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://Find-Fast-Business-Funds.site \r\n \r\nIf you\'ve been established for at least a year you are already pre-qualified. Our Quick service means funding can be finished within 48 hours. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://Find-Fast-Business-Funds.site \r\n \r\nHave a great day, \r\nThe Find Fast Business Funds Team \r\n \r\n \r\nremove here - http://Find-Fast-Business-Funds.site/r.php?url=qualstream.net&amp;id=226', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36', 'comment', 0, 0),
(30, 738, 'GetBusinessFundedNow', 'noreply@getbusinessfundednow.pro', 'http://GetBusinessFundedNow.Pro', '193.169.255.57', '2022-09-27 23:14:51', '2022-09-27 23:14:51', 'Hi, do you know that http://GetBusinessFundedNow.Pro can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://GetBusinessFundedNow.Pro \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 180K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://GetBusinessFundedNow.Pro \r\n \r\nHave a good day, \r\nThe Get Business Funded Now Team \r\n \r\n \r\nunsubscribe/remove - http://GetBusinessFundedNow.Pro/r.php?url=qualstream.net&amp;id=227', 0, '0', 'Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16', 'comment', 0, 0),
(31, 738, 'GetBusinessFunded', 'noreply@getbusinessfunded.pro', 'http://GetBusinessFunded.Pro', '193.169.255.57', '2022-10-07 07:02:04', '2022-10-07 07:02:04', 'Faster and Easier than the SBA, http://GetBusinessFunded.Pro can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our 1 minute form to See exactly how much you can get, No-Cost: \r\n \r\nhttp://GetBusinessFunded.Pro \r\n \r\nIf you\'ve been established for at least a year you are already pre-qualified. Our Fast service means funding can be finished within 48 hours. Terms are specific for each business so I suggest applying to find out exactly how much y \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the whole amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://GetBusinessFunded.Pro \r\n \r\nHave a great day, \r\nThe Get Business Funded Team \r\n \r\n \r\nunsubscribe here - http://GetBusinessFunded.Pro/r.php?url=qualstream.net&amp;id=230', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.13014 YaBrowser/13.12.1599.13014 Safari/537.36', 'comment', 0, 0),
(32, 738, 'SmallBusinessFunding247', 'noreply@smallbusinessfunding247.site', 'http://SmallBusinessFunding247.site', '176.111.173.76', '2022-10-25 22:36:21', '2022-10-25 22:36:21', 'Hi, do you know that http://SmallBusinessFunding247.site can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://SmallBusinessFunding247.site \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 180K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://SmallBusinessFunding247.site \r\n \r\nHave a good day, \r\nThe Small Business Funding 247 Team \r\n \r\n \r\nunsubscribe/remove - http://SmallBusinessFunding247.site/r.php?url=qualstream.net&amp;id=237', 0, '0', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.12785 YaBrowser/13.12.1599.12785 Safari/537.36', 'comment', 0, 0),
(33, 738, 'BusinessLoansFundedNow', 'noreply@businessloansfundednow.pro', 'http://BusinessLoansFundedNow.Pro', '176.111.173.76', '2022-11-03 16:48:58', '2022-11-03 16:48:58', 'Hi, do you know that http://BusinessLoansFundedNow.Pro can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://BusinessLoansFundedNow.Pro \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 180K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://BusinessLoansFundedNow.Pro \r\n \r\nHave a good day, \r\nThe Business Loans Funded Now Team \r\n \r\n \r\nunsubscribe/remove - http://BusinessLoansFundedNow.Pro/r.php?url=qualstream.net&amp;id=239', 0, '0', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36', 'comment', 0, 0),
(34, 1076, 'Content Generator', '4atfpks7o6@gmail.com', 'https://stanford.io/3FXszd0', '188.74.168.153', '2022-11-29 19:47:30', '2022-11-29 19:47:30', '﻿Artificial intelligence creates content for the site, no worse than a copywriter, you can also use it to write articles. 100% uniqueness, scheduled posting to your Wordpress :). Click Here:👉 https://stanford.io/3FXszd0', 0, '0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:36.0) Gecko/20100101 Firefox/36.0', 'comment', 0, 0),
(35, 1, 'ringtone_odsr', 'rgtnofkgpMn@webmyselfym.com', 'https://ringtonessphone.com/rude-ringtone-answer-the-phone.html', '89.22.238.69', '2022-12-06 06:42:14', '2022-12-06 06:42:14', 'fantasy ringtone <a href=\"https://ringtonessphone.com/fantasy-ringtone.html\" rel=\"nofollow ugc\">https://ringtonessphone.com/fantasy-ringtone.html</a>', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36', 'comment', 0, 0),
(36, 1, 'Lesliespofs', 'asdfgh@gmail.com', '', '157.97.122.45', '2022-12-25 14:15:17', '2022-12-25 14:15:17', '<a href=\"https://www.mozillka.org/\" / rel=\"nofollow ugc\">https://www.mozillka.org/</a>', 0, '0', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36', 'comment', 0, 0),
(37, 1, 'SoundeffectslCom', 'dltfndzedMn@webmyselfym.com', 'https://sounddeffects.com/car-sounds', '89.22.238.69', '2022-12-25 16:25:22', '2022-12-25 16:25:22', 'home and office sounds <a href=\"https://sounddeffects.com/home-and-office-sounds\" rel=\"nofollow ugc\">https://sounddeffects.com/home-and-office-sounds</a>', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36', 'comment', 0, 0),
(38, 1, 'zelma', '70437@gmail.com', 'https://bit.ly/3UKFVxa', '91.244.12.146', '2022-12-29 01:48:57', '2022-12-29 01:48:57', 'Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa', 0, '0', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36', 'comment', 0, 0),
(39, 1, 'zelma', '35278@gmail.com', 'https://bit.ly/3UKFVxa', '45.158.48.239', '2023-01-02 05:50:10', '2023-01-02 05:50:10', 'Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa', 0, '0', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36', 'comment', 0, 0),
(40, 1, 'LineRal', 'vladislav@whowasable.store', '', '5.167.248.27', '2023-02-10 18:21:20', '2023-02-10 18:21:20', 'pin up официальный сайт \r\n<a href=\"https://pin-up-2023.ru/\" / rel=\"nofollow ugc\">pinup</a>', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36', 'comment', 0, 0),
(41, 1, 'LideDuawl', 'zajmoslav@whowasable.store', '', '92.248.170.54', '2023-02-16 12:16:36', '2023-02-16 12:16:36', 'лучшие займы первый займ без процентов \r\n<a href=\"https://zajmyonlajn.wordpress.com/\" / rel=\"nofollow ugc\">большой займ с плохой кредитной историей</a>', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36', 'comment', 0, 0),
(42, 1, 'Tomboype', 'zajmisha@whowasable.store', '', '46.163.138.218', '2023-02-25 11:41:08', '2023-02-25 11:41:08', 'займ на карту мгновенно без отказа \r\n<a href=\"https://zajmyonlajn.blogspot.com/2023/02/chto-takoe-mikrofinansovye-organizacii-mfo.html\" rel=\"nofollow ugc\">https://zajmyonlajn.blogspot.com/2023/02/chto-takoe-mikrofinansovye-organizacii-mfo.html</a>', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36', 'comment', 0, 0),
(43, 1, 'Tomboype', 'zajmund@whowasable.store', '', '46.163.138.218', '2023-02-27 14:18:20', '2023-02-27 14:18:20', 'как взять займ без отказа \r\n<a href=\"https://zajmy.tumblr.com/\" / rel=\"nofollow ugc\">https://www.zajmy.tumblr.com</a>', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49', 'comment', 0, 0),
(44, 1, 'bet-promokod.ru', 'chrisevathpe1980@gmail.com', 'https://bet-promokod.ru/', '188.134.68.55', '2023-03-12 04:20:44', '2023-03-12 04:20:44', '1xBet является одной из самых популярных на рынке.  Большой выбор событий из мира спорта и киберспорта, десятки открытых линий, высочайшие коэффициенты. Кроме того, БК имеет широкий функционал и немногие дает возможность совершать ставки по специальным промокодам. Используя их, вы можете получить реальный денежный выигрыш, не внося абсолютно никаких средств. Это реально! Узнать актуальный промокод вы можете прямо сейчас, однако использовать его необходимо в соответствии с правилами и инструкциями, которые приведены ниже.', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', 'comment', 0, 0),
(45, 1, 'Ssylviefe', 'zajmasha@whowasable.store', '', '92.248.170.54', '2023-03-24 20:14:13', '2023-03-24 20:14:13', 'Игорные автоматы в казино Pin-up <a href=\"https://ssylki.info/site/pin-up-reg2023.ru\" rel=\"nofollow ugc\">пин ап ставки</a>.', 0, '0', 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36', 'comment', 0, 0),
(46, 1, 'Rubviefe', 'zajmvchetverg@whowasable.store', '', '88.85.223.83', '2023-03-29 14:42:10', '2023-03-29 14:42:10', 'Рекомендую <a href=\"https://rub-zaim.ru/\" / rel=\"nofollow ugc\">микрозаймы с 19 лет</a> бесплатно.', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Herring/95.1.8810.11', 'comment', 0, 0),
(47, 1, 'NvsbDuawl', 'vykup-avto-novosibirsk11@wbkey.ru', '', '5.167.243.28', '2023-04-10 12:16:43', '2023-04-10 12:16:43', 'Выбрал их среди остальных <a href=\"https://vykup-avto-novosibirsk11.ru/\" / rel=\"nofollow ugc\">выкуп автомобилей срочный</a> в любом состоянии.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'comment', 0, 0),
(48, 1, 'EkbDuawl', 'vykup-avto-ekaterinburg789@wbkey.ru', '', '77.223.85.218', '2023-04-11 07:12:12', '2023-04-11 07:12:12', 'Один из самых дорогих <a href=\"https://vykup-avto-ekaterinburg789.ru/\" / rel=\"nofollow ugc\">продажа авто на разборку</a> с выездом на место.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36', 'comment', 0, 0),
(49, 1, 'VlggrdDuawl', 'vykup-avto-volgograd134@wbkey.ru', '', '77.223.85.218', '2023-04-11 12:31:18', '2023-04-11 12:31:18', 'Предлагаем <a href=\"https://vykup-avto-volgograd134.ru/\" / rel=\"nofollow ugc\">выкуп авто краснодар</a> дорого.', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OpenWave/97.4.2043.44', 'comment', 0, 0),
(50, 1, 'Tomboype', 'zayma@whowasable.store', 'http://[url=][/url%5D', '5.166.51.56', '2023-04-15 06:14:24', '2023-04-15 06:14:24', 'Онлайн займы на карту становятся востребованне в наши дни. Несколько займов на карту доступны компаниями, работающими круглосуточно. Например, в РФ доступны -  <a href=\"https://rmfast.ru/\" / rel=\"nofollow ugc\">онлайн займы на карту</a> \r\nОнлайн ссуды по карте быстро могут значительно высокой процентной ставкой согласно правилами до 1 процента. \r\nИнтернет займы на карту востребованы в текущем времени. Лучшие варинты займов онлайн на карту вы найдете на сайте подбора МФК.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'comment', 0, 0),
(51, 1, 'Tomboype', 'zaymad@whowasable.store', '', '46.163.143.141', '2023-05-04 12:09:29', '2023-05-04 12:09:29', '<a href=\"https://mirfinin.ru/\" / rel=\"nofollow ugc\">микрозаймы робот на карту</a>: простой и быстрый способ оформить деньги в долг онлайн. \r\nВ текущем мире, когда время играет большую роль, займы онлайн стали одним из самых востребованных способов получения денежной поддержки. Возможность оформить микрозайм на карту мгновенно и без отказа, а также взять микрозаймы наличными, привлекает всё больше людей. \r\nМикрофинансовые организации предлагают широкий выбор микрозаймов, включая срочные микрозаймы на карту, микрозаймы онлайн и микрокредиты наличными. Одним из главных преимуществ этих услуг является возможность получить микрозайм без отказа на карту в России в 2023 году, что становится незаменимым для людей с плохой кредитной историей. \r\nСреди прочих услуг МФК можно выделить микрозаймы без процентов на карту сразу в первый раз, что позволяет сэкономить на процентах и вернуть только ту сумму, которую взяли.', 0, '0', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36', 'comment', 0, 0),
(52, 1, '2UvFXGjPXvL4GREDBYJXdVTMc9c', '2UvFXGjPXvL4GREDBYJXdVTMc9c@email.com', '', '62.122.184.251', '2023-09-05 22:42:40', '2023-09-05 22:42:40', '2UvFXGjPXvL4GREDBYJXdVTMc9c', 0, '0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36', 'comment', 0, 0),
(53, 1, 'Josephdot', 'flirtfinder81@gmail.com', 'https://forfreedating.co.uk/', '194.0.194.153', '2023-10-02 01:48:00', '2023-10-02 01:48:00', '<a href=\"https://forfreedating.co.uk/\" / rel=\"nofollow ugc\">Flirtfinders</a> is a trusted online dating service that provides a venue for singles to chat for free. \r\nWith a easy-to-use platform and smart search features, Flirtfinders makes it easy to find potential matches. \r\nThe platform includes multiple options, including private messaging and virtual gifts, to add some fun to your chats. \r\nWhether you\'re searching for a serious relationship, Flirtfinders has got you covered. \r\nJoin now and start flirting for free on Flirtfinders!', 0, '0', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'comment', 0, 0),
(54, 1, 'StephenShoup', 'wsdcvfd@gmail.com', '', '62.84.103.87', '2023-10-17 11:02:46', '2023-10-17 11:02:46', 'https://www.mumuglobal.com/', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'comment', 0, 0),
(55, 131, 'www.israelxclub.co.il', 'heey0vlzs@gmail.com', 'https://www.israelxclub.co.il/', '154.201.37.175', '2023-10-29 01:13:25', '2023-10-29 01:13:25', 'Nice post. I learn something new and challenging on blogs I stumbleupon everyday. It will always be useful to read content from other writers and practice a little something from their web sites.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36', 'comment', 0, 0),
(56, 1, 'batmanapolloru', '', 'https://batmanapollo.ru', '195.2.67.223', '2023-11-27 12:55:13', '2023-11-27 12:55:13', '<strong>batmanapolloru</strong>\n\nbatmanapolloru', 0, '0', '', 'trackback', 0, 0),
(57, 1, 'ThomasVut', 'dsadsadas@mail.com', '', '94.103.82.120', '2023-12-31 19:41:57', '2023-12-31 19:41:57', 'Удобный сервис с объявлениями <a href=\"https://t.me/akordaru\" rel=\"nofollow ugc\">квартир в новостройках Ташкента</a> с готовым ремонтом, в ипотеку, рассрочку, аренда или продажа с актуальными ценами. \r\n \r\nТеперь вы точно знаете сервис в котором можно <a href=\"https://www.instagram.com/akordauz/\" rel=\"nofollow ugc\">купить квартиру в Ташкенте</a>, <a href=\"http://businesspark.uz/\" rel=\"nofollow ugc\">купить недвижимость в Ташкенте</a>, продажа квартир, куплю-продам жилье недорого, цены. Найдите любую недвижимость по Узбекистану. Занимайтесь недвижимостью не выходя из дома. Выбирайте лучшее. Ведущий поисковик <a href=\"https://t.me/akordauz\" rel=\"nofollow ugc\">недвижимость в Ташкенте</a>.', 0, '0', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36', 'comment', 0, 0),
(58, 738, '🔴 Withdrawing 45 249 US dollars. Withdrаw =&gt;&gt; https://forms.yandex.com/cloud/65a8ee1e5d2a0628db729f8e/?hs=5e0358a5fe5a142b442fdcea14ab5596&amp; 🔴', 'dedklokkk@konterkulo.com', 'https://forms.yandex.com/cloud/65a8ee1e5d2a0628db729f8e/', '23.154.177.14', '2024-01-20 23:48:35', '2024-01-20 23:48:35', 'tx726n', 0, '0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36', 'comment', 0, 0),
(59, 1, 'Zoet', 'Zoe0mK@gmail.com', 'https://zetds.seychellesyoga.com/info', '46.8.17.113', '2024-01-26 07:34:42', '2024-01-26 07:34:42', 'Can provide a link mass to your website https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(60, 1, 'Veronicat', 'Veronica3gj@gmail.com', 'https://zetds.seychellesyoga.com/info', '188.130.136.111', '2024-01-26 10:30:51', '2024-01-26 10:30:51', 'Your site\'s position in the search results https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(61, 1, 'Veronicat', 'Veronicapmf@gmail.com', 'https://zetds.seychellesyoga.com/info', '46.8.110.51', '2024-01-26 16:14:38', '2024-01-26 16:14:38', 'Free analysis of your website https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(62, 1, 'Shirleyt', 'ShirleyYbT@gmail.com', 'https://zetds.seychellesyoga.com/info', '46.8.56.25', '2024-01-26 22:06:50', '2024-01-26 22:06:50', 'SEO Optimizers Team https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(63, 1, 'Priscillat', 'Priscillagmw@gmail.com', 'https://zetds.seychellesyoga.com/info', '46.8.222.128', '2024-01-27 04:03:16', '2024-01-27 04:03:16', 'I offer mutually beneficial cooperation https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(64, 1, 'Gwent', 'GwenlKr@gmail.com', 'https://zetds.seychellesyoga.com/info', '213.226.101.241', '2024-01-27 09:57:20', '2024-01-27 09:57:20', 'Cool website. There is a suggestion https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(65, 1, 'Madelinet', 'MadelineCWm@gmail.com', 'https://zetds.seychellesyoga.com/info', '95.182.126.12', '2024-01-27 16:05:49', '2024-01-27 16:05:49', 'I really liked your site. Do you mind https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(66, 1, 'Mandyt', 'Mandy5bX@gmail.com', 'https://zetds.seychellesyoga.com/info', '188.130.142.174', '2024-01-27 22:07:47', '2024-01-27 22:07:47', 'Here\'s what I can offer for the near future https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(67, 1, 'Emilyt', 'Emily1nB@gmail.com', 'https://zetds.seychellesyoga.com/info', '188.130.142.57', '2024-01-28 04:06:45', '2024-01-28 04:06:45', 'You will definitely like it https://zetds.seychellesyoga.com/info', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(68, 1, 'Heathert', 'HeatherpWA@gmail.com', 'https://ztd.bardou.online/adm', '46.8.156.101', '2024-01-28 09:05:08', '2024-01-28 09:05:08', 'Content for your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(69, 1, 'Heathert', 'HeatherK8M@gmail.com', 'https://ztd.bardou.online/adm', '188.130.143.162', '2024-01-28 15:07:20', '2024-01-28 15:07:20', 'Web Development Wizards https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(70, 1, 'Sarat', 'SaraIMQ@gmail.com', 'https://ztd.bardou.online/adm', '188.130.142.163', '2024-01-28 21:11:57', '2024-01-28 21:11:57', 'Can provide a link mass to your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(71, 1, 'Florancet', 'FloranceRqs@gmail.com', 'https://ztd.bardou.online/adm', '188.130.128.55', '2024-01-29 03:15:51', '2024-01-29 03:15:51', 'Your site\'s position in the search results https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(72, 1, 'Janet', 'JaneDUt@gmail.com', 'https://ztd.bardou.online/adm', '109.248.204.149', '2024-01-29 09:28:45', '2024-01-29 09:28:45', 'Free analysis of your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(73, 1, 'Lydiat', 'LydiakeT@gmail.com', 'https://ztd.bardou.online/adm', '46.8.57.120', '2024-01-29 15:39:46', '2024-01-29 15:39:46', 'SEO Optimizers Team https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(74, 1, 'Sallyt', 'SallyEBB@gmail.com', 'https://ztd.bardou.online/adm', '109.248.14.89', '2024-01-29 21:49:33', '2024-01-29 21:49:33', 'I offer mutually beneficial cooperation https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(75, 1, 'Priscillat', 'Priscillaw9D@gmail.com', 'https://ztd.bardou.online/adm', '46.8.106.184', '2024-01-30 03:55:22', '2024-01-30 03:55:22', 'Cool website. There is a suggestion https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0);
INSERT INTO `qs_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(76, 1, 'Mariat', 'MariaRcN@gmail.com', 'https://ztd.bardou.online/adm', '46.8.222.28', '2024-01-30 10:02:40', '2024-01-30 10:02:40', 'I really liked your site. Do you mind https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(77, 1, 'Averyt', 'AveryLPr@gmail.com', 'https://ztd.bardou.online/adm', '188.130.185.240', '2024-01-30 20:49:31', '2024-01-30 20:49:31', 'Content for your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(78, 1, 'Madisont', 'MadisontrS@gmail.com', 'https://ztd.bardou.online/adm', '46.8.56.25', '2024-01-31 02:43:45', '2024-01-31 02:43:45', 'Web Development Wizards https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(79, 1, 'Zoet', 'Zoe2kP@gmail.com', 'https://ztd.bardou.online/adm', '188.130.142.250', '2024-01-31 08:32:17', '2024-01-31 08:32:17', 'Can provide a link mass to your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(80, 1, 'Mayt', 'Mayz1R@gmail.com', 'https://ztd.bardou.online/adm', '188.130.129.199', '2024-01-31 14:31:30', '2024-01-31 14:31:30', 'Your site\'s position in the search results https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(81, 1, 'Stellat', 'StellaXBT@gmail.com', 'https://ztd.bardou.online/adm', '109.248.15.90', '2024-01-31 20:28:38', '2024-01-31 20:28:38', 'Free analysis of your website https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(82, 1, 'Susannat', 'SusannaYWo@gmail.com', 'https://ztd.bardou.online/adm', '45.87.253.92', '2024-02-01 02:17:01', '2024-02-01 02:17:01', 'SEO Optimizers Team https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(83, 1, 'Gracet', 'GraceQSs@gmail.com', 'https://ztd.bardou.online/adm', '45.90.196.29', '2024-02-01 07:59:55', '2024-02-01 07:59:55', 'I offer mutually beneficial cooperation https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(84, 1, 'Normat', 'Normapqb@gmail.com', 'https://ztd.bardou.online/adm', '213.226.101.25', '2024-02-01 13:46:31', '2024-02-01 13:46:31', 'Cool website. There is a suggestion https://ztd.bardou.online/adm', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(85, 1, 'Nancyt', 'NancyxNF@gmail.com', 'http://myngirls.online/', '46.8.57.120', '2024-02-01 17:04:00', '2024-02-01 17:04:00', 'Content for your website http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(86, 1, 'Aryat', 'Arya81p@gmail.com', 'http://myngirls.online/', '45.15.73.12', '2024-02-01 22:54:52', '2024-02-01 22:54:52', 'Web Development Wizards http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(87, 1, 'Juliett', 'JulietnX2@gmail.com', 'http://myngirls.online/', '188.130.143.162', '2024-02-02 04:41:40', '2024-02-02 04:41:40', 'Can provide a link mass to your website http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(88, 1, 'Sheilat', 'SheilaB7k@gmail.com', 'http://myngirls.online/', '31.40.203.228', '2024-02-02 10:26:11', '2024-02-02 10:26:11', 'Your site\'s position in the search results http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(89, 1, 'Evat', 'EvaCbC@gmail.com', 'http://myngirls.online/', '45.87.253.154', '2024-02-03 00:13:45', '2024-02-03 00:13:45', 'Free analysis of your website http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(90, 1, 'Monicat', 'Monicawtn@gmail.com', 'http://myngirls.online/', '109.248.48.25', '2024-02-03 13:56:52', '2024-02-03 13:56:52', 'SEO Optimizers Team http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(91, 1, 'Annt', 'AnnYLt@gmail.com', 'http://myngirls.online/', '188.130.142.41', '2024-02-04 03:41:58', '2024-02-04 03:41:58', 'I offer mutually beneficial cooperation http://myngirls.online/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(92, 1, 'Nancyt', 'NancytGQ@gmail.com', 'http://fertus.shop/info/', '46.8.57.120', '2024-02-04 09:14:12', '2024-02-04 09:14:12', 'Content for your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(93, 1, 'Aryat', 'Arya3cT@gmail.com', 'http://fertus.shop/info/', '45.15.73.12', '2024-02-04 17:04:45', '2024-02-04 17:04:45', 'Web Development Wizards http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(94, 1, 'Juliett', 'JulietVoR@gmail.com', 'http://fertus.shop/info/', '188.130.143.162', '2024-02-05 00:55:55', '2024-02-05 00:55:55', 'Can provide a link mass to your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(95, 1, 'Sheilat', 'SheilaRP6@gmail.com', 'http://fertus.shop/info/', '31.40.203.228', '2024-02-05 08:45:37', '2024-02-05 08:45:37', 'Your site\'s position in the search results http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(96, 1, 'Evat', 'Evaxf7@gmail.com', 'http://fertus.shop/info/', '45.87.253.154', '2024-02-05 22:35:25', '2024-02-05 22:35:25', 'Free analysis of your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(97, 1, 'Monicat', 'Monicauru@gmail.com', 'http://fertus.shop/info/', '109.248.48.25', '2024-02-06 12:24:38', '2024-02-06 12:24:38', 'SEO Optimizers Team http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(98, 1, 'Annt', 'Annh68@gmail.com', 'http://fertus.shop/info/', '188.130.142.41', '2024-02-07 02:14:13', '2024-02-07 02:14:13', 'I offer mutually beneficial cooperation http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(99, 1, 'Judyt', 'JudylDR@gmail.com', 'http://fertus.shop/info/', '188.130.185.242', '2024-02-07 16:04:26', '2024-02-07 16:04:26', 'Cool website. There is a suggestion http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(100, 1, 'Selenat', 'SelenaMfo@gmail.com', 'http://fertus.shop/info/', '109.248.15.43', '2024-02-08 05:55:11', '2024-02-08 05:55:11', 'I really liked your site. Do you mind http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(101, 1, 'Emmat', 'EmmaSn5@gmail.com', 'http://fertus.shop/info/', '109.248.128.168', '2024-02-08 19:44:49', '2024-02-08 19:44:49', 'Here\'s what I can offer for the near future http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(102, 1, 'Mollyt', 'Molly30w@gmail.com', 'http://fertus.shop/info/', '109.248.55.237', '2024-02-09 09:31:32', '2024-02-09 09:31:32', 'You will definitely like it http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(103, 1, 'Anastasiat', 'AnastasiaYc8@gmail.com', 'http://fertus.shop/info/', '45.84.176.71', '2024-02-09 23:15:56', '2024-02-09 23:15:56', 'The best prices from the best providers http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(104, 1, 'Josephinet', 'JosephineTd4@gmail.com', 'http://fertus.shop/info/', '188.130.136.67', '2024-02-10 13:00:23', '2024-02-10 13:00:23', 'Additional earnings on your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(105, 1, 'Sarat', 'SaraFU6@gmail.com', 'http://fertus.shop/info/', '46.8.155.89', '2024-02-11 02:43:23', '2024-02-11 02:43:23', 'Analytics of your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(106, 1, 'Ellat', 'EllaLkt@gmail.com', 'http://fertus.shop/info/', '194.35.113.26', '2024-02-11 16:27:10', '2024-02-11 16:27:10', 'I would like to post an article http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(107, 1, 'Harold4001', 'Harold4001@gmail.com', '', '51.79.85.223', '2024-02-12 03:20:01', '2024-02-12 03:20:01', 'Мадонна, икона поп-музыки и культурного влияния, продолжает вдохновлять и поражать своей музыкой и стилем. Её карьера олицетворяет смелость, инновации и постоянное стремление к самовыражению. Среди её лучших песен можно выделить \"Like a Prayer\", \"Vogue\", \"Material Girl\", \"Into the Groove\" и \"Hung Up\". Эти треки не только доминировали на музыкальных чартах, но и оставили неизгладимый след в культурной и исторической панораме музыки. Мадонна не только певица, но и икона стиля, актриса и предприниматель, чье влияние простирается далеко за рамки музыкальной индустрии. <a href=\"https://mp3name.co\" rel=\"nofollow ugc\">Скачать mp3 музыку</a> 2024 года и слушать онлайн бесплатно.', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(108, 1, 'Miat', 'Miaaaa@gmail.com', 'http://fertus.shop/info/', '188.130.137.208', '2024-02-12 06:17:54', '2024-02-12 06:17:54', 'How to contact the administrator on this issue http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(109, 1, 'Amandat', 'Amandaaaa@gmail.com', 'http://fertus.shop/info/', '109.248.15.26', '2024-02-12 20:23:47', '2024-02-12 20:23:47', 'Shall we exchange links? My website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(110, 1, 'Jocelynt', 'Jocelynaaa@gmail.com', 'http://fertus.shop/info/', '46.8.17.186', '2024-02-13 10:20:26', '2024-02-13 10:20:26', 'The offer is still valid. Details http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(111, 1, 'Sandrat', 'Sandraaaa@gmail.com', 'http://fertus.shop/info/', '92.119.193.111', '2024-02-14 00:12:14', '2024-02-14 00:12:14', 'We offer cooperation on SEO optimization http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(112, 1, 'Eleanort', 'Eleanoraaa@gmail.com', 'http://fertus.shop/info/', '46.8.192.109', '2024-02-14 14:01:32', '2024-02-14 14:01:32', 'Content for your website http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(113, 1, 'Mayt', 'Mayaaa@gmail.com', 'http://fertus.shop/info/', '188.130.129.140', '2024-02-15 03:47:03', '2024-02-15 03:47:03', 'Web Development Wizards http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(114, 1, 'Jessiet', 'Jessieaaa@gmail.com', 'http://fertus.shop/info/', '188.130.129.152', '2024-02-16 07:04:37', '2024-02-16 07:04:37', 'Your site\'s position in the search results http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(115, 1, 'Aryat', 'AryagDU@gmail.com', 'http://fertus.shop/info/', '45.15.73.12', '2024-02-16 23:55:27', '2024-02-16 23:55:27', 'Web Development Wizards http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(116, 1, 'Sheilat', 'Sheilaaaa@gmail.com', 'http://fertus.shop/info/', '31.40.203.228', '2024-02-18 02:34:17', '2024-02-18 02:34:17', 'Your site\'s position in the search results http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0),
(117, 1, 'Monicat', 'Monicaaaa@gmail.com', 'http://fertus.shop/info/', '109.248.48.25', '2024-02-19 05:11:05', '2024-02-19 05:11:05', 'SEO Optimizers Team http://fertus.shop/info/', 0, '0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `qs_links`
--

CREATE TABLE `qs_links` (
  `link_id` bigint UNSIGNED NOT NULL,
  `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint UNSIGNED NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_options`
--

CREATE TABLE `qs_options` (
  `option_id` bigint UNSIGNED NOT NULL,
  `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_options`
--

INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'https://qualstream.net', 'yes'),
(2, 'home', 'https://qualstream.net', 'yes'),
(3, 'blogname', 'QualStream', 'yes'),
(4, 'blogdescription', 'Tech Pvt Ltd', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'mohammed.jafar02@gmail.com', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(29, 'rewrite_rules', 'a:528:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:9:\"events/?$\";s:29:\"index.php?post_type=stm_event\";s:39:\"events/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_event&feed=$matches[1]\";s:34:\"events/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_event&feed=$matches[1]\";s:26:\"events/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=stm_event&paged=$matches[1]\";s:15:\"event_member/?$\";s:32:\"index.php?post_type=event_member\";s:45:\"event_member/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=event_member&feed=$matches[1]\";s:40:\"event_member/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=event_member&feed=$matches[1]\";s:32:\"event_member/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=event_member&paged=$matches[1]\";s:10:\"service/?$\";s:31:\"index.php?post_type=stm_service\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=stm_service&feed=$matches[1]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=stm_service&feed=$matches[1]\";s:27:\"service/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=stm_service&paged=$matches[1]\";s:18:\"careers_archive/?$\";s:31:\"index.php?post_type=stm_careers\";s:48:\"careers_archive/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=stm_careers&feed=$matches[1]\";s:43:\"careers_archive/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=stm_careers&feed=$matches[1]\";s:35:\"careers_archive/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=stm_careers&paged=$matches[1]\";s:8:\"staff/?$\";s:29:\"index.php?post_type=stm_staff\";s:38:\"staff/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_staff&feed=$matches[1]\";s:33:\"staff/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_staff&feed=$matches[1]\";s:25:\"staff/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=stm_staff&paged=$matches[1]\";s:8:\"works/?$\";s:29:\"index.php?post_type=stm_works\";s:38:\"works/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_works&feed=$matches[1]\";s:33:\"works/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=stm_works&feed=$matches[1]\";s:25:\"works/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=stm_works&paged=$matches[1]\";s:15:\"testimonials/?$\";s:36:\"index.php?post_type=stm_testimonials\";s:45:\"testimonials/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=stm_testimonials&feed=$matches[1]\";s:40:\"testimonials/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=stm_testimonials&feed=$matches[1]\";s:32:\"testimonials/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=stm_testimonials&paged=$matches[1]\";s:13:\"vc_sidebar/?$\";s:34:\"index.php?post_type=stm_vc_sidebar\";s:43:\"vc_sidebar/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=stm_vc_sidebar&feed=$matches[1]\";s:38:\"vc_sidebar/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=stm_vc_sidebar&feed=$matches[1]\";s:30:\"vc_sidebar/page/([0-9]{1,})/?$\";s:52:\"index.php?post_type=stm_vc_sidebar&paged=$matches[1]\";s:12:\"portfolio/?$\";s:33:\"index.php?post_type=stm_portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=stm_portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=stm_portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=stm_portfolio&paged=$matches[1]\";s:9:\"shop-2/?$\";s:27:\"index.php?post_type=product\";s:39:\"shop-2/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:34:\"shop-2/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:26:\"shop-2/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:37:\"cost-calc/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"cost-calc/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"cost-calc/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cost-calc/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cost-calc/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"cost-calc/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"cost-calc/([^/]+)/embed/?$\";s:57:\"index.php?post_type=cost-calc&name=$matches[1]&embed=true\";s:30:\"cost-calc/([^/]+)/trackback/?$\";s:51:\"index.php?post_type=cost-calc&name=$matches[1]&tb=1\";s:38:\"cost-calc/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?post_type=cost-calc&name=$matches[1]&paged=$matches[2]\";s:45:\"cost-calc/([^/]+)/comment-page-([0-9]{1,})/?$\";s:64:\"index.php?post_type=cost-calc&name=$matches[1]&cpage=$matches[2]\";s:35:\"cost-calc/([^/]+)/wc-api(/(.*))?/?$\";s:65:\"index.php?post_type=cost-calc&name=$matches[1]&wc-api=$matches[3]\";s:41:\"cost-calc/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"cost-calc/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"cost-calc/([^/]+)(?:/([0-9]+))?/?$\";s:63:\"index.php?post_type=cost-calc&name=$matches[1]&page=$matches[2]\";s:26:\"cost-calc/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"cost-calc/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"cost-calc/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cost-calc/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cost-calc/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"cost-calc/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"events/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"events/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"events/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"events/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"events/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"events/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"events/([^/]+)/embed/?$\";s:42:\"index.php?stm_event=$matches[1]&embed=true\";s:27:\"events/([^/]+)/trackback/?$\";s:36:\"index.php?stm_event=$matches[1]&tb=1\";s:47:\"events/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_event=$matches[1]&feed=$matches[2]\";s:42:\"events/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_event=$matches[1]&feed=$matches[2]\";s:35:\"events/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?stm_event=$matches[1]&paged=$matches[2]\";s:42:\"events/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?stm_event=$matches[1]&cpage=$matches[2]\";s:32:\"events/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?stm_event=$matches[1]&wc-api=$matches[3]\";s:38:\"events/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"events/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"events/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?stm_event=$matches[1]&page=$matches[2]\";s:23:\"events/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"events/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"events/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"events/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"events/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"events/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"event_member/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"event_member/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"event_member/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"event_member/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"event_member/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"event_member/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"event_member/([^/]+)/embed/?$\";s:45:\"index.php?event_member=$matches[1]&embed=true\";s:33:\"event_member/([^/]+)/trackback/?$\";s:39:\"index.php?event_member=$matches[1]&tb=1\";s:53:\"event_member/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?event_member=$matches[1]&feed=$matches[2]\";s:48:\"event_member/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?event_member=$matches[1]&feed=$matches[2]\";s:41:\"event_member/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?event_member=$matches[1]&paged=$matches[2]\";s:48:\"event_member/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?event_member=$matches[1]&cpage=$matches[2]\";s:38:\"event_member/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?event_member=$matches[1]&wc-api=$matches[3]\";s:44:\"event_member/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"event_member/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"event_member/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?event_member=$matches[1]&page=$matches[2]\";s:29:\"event_member/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"event_member/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"event_member/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"event_member/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"event_member/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"event_member/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"service/([^/]+)/embed/?$\";s:44:\"index.php?stm_service=$matches[1]&embed=true\";s:28:\"service/([^/]+)/trackback/?$\";s:38:\"index.php?stm_service=$matches[1]&tb=1\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?stm_service=$matches[1]&feed=$matches[2]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?stm_service=$matches[1]&feed=$matches[2]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?stm_service=$matches[1]&paged=$matches[2]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?stm_service=$matches[1]&cpage=$matches[2]\";s:33:\"service/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?stm_service=$matches[1]&wc-api=$matches[3]\";s:39:\"service/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"service/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"service/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?stm_service=$matches[1]&page=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"careers_archive/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"careers_archive/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"careers_archive/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"careers_archive/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"careers_archive/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"careers_archive/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"careers_archive/([^/]+)/embed/?$\";s:44:\"index.php?stm_careers=$matches[1]&embed=true\";s:36:\"careers_archive/([^/]+)/trackback/?$\";s:38:\"index.php?stm_careers=$matches[1]&tb=1\";s:56:\"careers_archive/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?stm_careers=$matches[1]&feed=$matches[2]\";s:51:\"careers_archive/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?stm_careers=$matches[1]&feed=$matches[2]\";s:44:\"careers_archive/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?stm_careers=$matches[1]&paged=$matches[2]\";s:51:\"careers_archive/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?stm_careers=$matches[1]&cpage=$matches[2]\";s:41:\"careers_archive/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?stm_careers=$matches[1]&wc-api=$matches[3]\";s:47:\"careers_archive/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"careers_archive/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"careers_archive/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?stm_careers=$matches[1]&page=$matches[2]\";s:32:\"careers_archive/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"careers_archive/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"careers_archive/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"careers_archive/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"careers_archive/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"careers_archive/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"staff/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"staff/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"staff/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"staff/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"staff/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"staff/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"staff/([^/]+)/embed/?$\";s:42:\"index.php?stm_staff=$matches[1]&embed=true\";s:26:\"staff/([^/]+)/trackback/?$\";s:36:\"index.php?stm_staff=$matches[1]&tb=1\";s:46:\"staff/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_staff=$matches[1]&feed=$matches[2]\";s:41:\"staff/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_staff=$matches[1]&feed=$matches[2]\";s:34:\"staff/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?stm_staff=$matches[1]&paged=$matches[2]\";s:41:\"staff/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?stm_staff=$matches[1]&cpage=$matches[2]\";s:31:\"staff/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?stm_staff=$matches[1]&wc-api=$matches[3]\";s:37:\"staff/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"staff/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"staff/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?stm_staff=$matches[1]&page=$matches[2]\";s:22:\"staff/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"staff/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"staff/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"staff/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"staff/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"staff/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"works/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"works/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"works/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"works/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"works/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"works/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"works/([^/]+)/embed/?$\";s:42:\"index.php?stm_works=$matches[1]&embed=true\";s:26:\"works/([^/]+)/trackback/?$\";s:36:\"index.php?stm_works=$matches[1]&tb=1\";s:46:\"works/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_works=$matches[1]&feed=$matches[2]\";s:41:\"works/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?stm_works=$matches[1]&feed=$matches[2]\";s:34:\"works/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?stm_works=$matches[1]&paged=$matches[2]\";s:41:\"works/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?stm_works=$matches[1]&cpage=$matches[2]\";s:31:\"works/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?stm_works=$matches[1]&wc-api=$matches[3]\";s:37:\"works/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"works/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"works/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?stm_works=$matches[1]&page=$matches[2]\";s:22:\"works/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"works/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"works/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"works/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"works/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"works/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:49:\"index.php?stm_testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:43:\"index.php?stm_testimonials=$matches[1]&tb=1\";s:53:\"testimonials/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?stm_testimonials=$matches[1]&feed=$matches[2]\";s:48:\"testimonials/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?stm_testimonials=$matches[1]&feed=$matches[2]\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?stm_testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?stm_testimonials=$matches[1]&cpage=$matches[2]\";s:38:\"testimonials/([^/]+)/wc-api(/(.*))?/?$\";s:57:\"index.php?stm_testimonials=$matches[1]&wc-api=$matches[3]\";s:44:\"testimonials/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"testimonials/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?stm_testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"vc_sidebar/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"vc_sidebar/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"vc_sidebar/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"vc_sidebar/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"vc_sidebar/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"vc_sidebar/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"vc_sidebar/([^/]+)/embed/?$\";s:47:\"index.php?stm_vc_sidebar=$matches[1]&embed=true\";s:31:\"vc_sidebar/([^/]+)/trackback/?$\";s:41:\"index.php?stm_vc_sidebar=$matches[1]&tb=1\";s:51:\"vc_sidebar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?stm_vc_sidebar=$matches[1]&feed=$matches[2]\";s:46:\"vc_sidebar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?stm_vc_sidebar=$matches[1]&feed=$matches[2]\";s:39:\"vc_sidebar/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?stm_vc_sidebar=$matches[1]&paged=$matches[2]\";s:46:\"vc_sidebar/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?stm_vc_sidebar=$matches[1]&cpage=$matches[2]\";s:36:\"vc_sidebar/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?stm_vc_sidebar=$matches[1]&wc-api=$matches[3]\";s:42:\"vc_sidebar/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"vc_sidebar/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"vc_sidebar/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?stm_vc_sidebar=$matches[1]&page=$matches[2]\";s:27:\"vc_sidebar/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"vc_sidebar/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"vc_sidebar/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"vc_sidebar/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"vc_sidebar/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"vc_sidebar/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:46:\"index.php?stm_portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:40:\"index.php?stm_portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?stm_portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?stm_portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?stm_portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?stm_portfolio=$matches[1]&cpage=$matches[2]\";s:35:\"portfolio/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?stm_portfolio=$matches[1]&wc-api=$matches[3]\";s:41:\"portfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"portfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?stm_portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:66:\"stm_testimonials_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?stm_testimonials_category=$matches[1]&feed=$matches[2]\";s:61:\"stm_testimonials_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?stm_testimonials_category=$matches[1]&feed=$matches[2]\";s:42:\"stm_testimonials_category/([^/]+)/embed/?$\";s:58:\"index.php?stm_testimonials_category=$matches[1]&embed=true\";s:54:\"stm_testimonials_category/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?stm_testimonials_category=$matches[1]&paged=$matches[2]\";s:36:\"stm_testimonials_category/([^/]+)/?$\";s:47:\"index.php?stm_testimonials_category=$matches[1]\";s:59:\"stm_event_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_event_category=$matches[1]&feed=$matches[2]\";s:54:\"stm_event_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_event_category=$matches[1]&feed=$matches[2]\";s:35:\"stm_event_category/([^/]+)/embed/?$\";s:51:\"index.php?stm_event_category=$matches[1]&embed=true\";s:47:\"stm_event_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?stm_event_category=$matches[1]&paged=$matches[2]\";s:29:\"stm_event_category/([^/]+)/?$\";s:40:\"index.php?stm_event_category=$matches[1]\";s:61:\"stm_service_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?stm_service_category=$matches[1]&feed=$matches[2]\";s:56:\"stm_service_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?stm_service_category=$matches[1]&feed=$matches[2]\";s:37:\"stm_service_category/([^/]+)/embed/?$\";s:53:\"index.php?stm_service_category=$matches[1]&embed=true\";s:49:\"stm_service_category/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?stm_service_category=$matches[1]&paged=$matches[2]\";s:31:\"stm_service_category/([^/]+)/?$\";s:42:\"index.php?stm_service_category=$matches[1]\";s:59:\"stm_works_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_works_category=$matches[1]&feed=$matches[2]\";s:54:\"stm_works_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_works_category=$matches[1]&feed=$matches[2]\";s:35:\"stm_works_category/([^/]+)/embed/?$\";s:51:\"index.php?stm_works_category=$matches[1]&embed=true\";s:47:\"stm_works_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?stm_works_category=$matches[1]&paged=$matches[2]\";s:29:\"stm_works_category/([^/]+)/?$\";s:40:\"index.php?stm_works_category=$matches[1]\";s:59:\"stm_staff_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_staff_category=$matches[1]&feed=$matches[2]\";s:54:\"stm_staff_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?stm_staff_category=$matches[1]&feed=$matches[2]\";s:35:\"stm_staff_category/([^/]+)/embed/?$\";s:51:\"index.php?stm_staff_category=$matches[1]&embed=true\";s:47:\"stm_staff_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?stm_staff_category=$matches[1]&paged=$matches[2]\";s:29:\"stm_staff_category/([^/]+)/?$\";s:40:\"index.php?stm_staff_category=$matches[1]\";s:63:\"stm_portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?stm_portfolio_category=$matches[1]&feed=$matches[2]\";s:58:\"stm_portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?stm_portfolio_category=$matches[1]&feed=$matches[2]\";s:39:\"stm_portfolio_category/([^/]+)/embed/?$\";s:55:\"index.php?stm_portfolio_category=$matches[1]&embed=true\";s:51:\"stm_portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?stm_portfolio_category=$matches[1]&paged=$matches[2]\";s:33:\"stm_portfolio_category/([^/]+)/?$\";s:44:\"index.php?stm_portfolio_category=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"stm-zoom/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"stm-zoom/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"stm-zoom/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"stm-zoom/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"stm-zoom/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"stm-zoom/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"stm-zoom/([^/]+)/embed/?$\";s:41:\"index.php?stm-zoom=$matches[1]&embed=true\";s:29:\"stm-zoom/([^/]+)/trackback/?$\";s:35:\"index.php?stm-zoom=$matches[1]&tb=1\";s:37:\"stm-zoom/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?stm-zoom=$matches[1]&paged=$matches[2]\";s:44:\"stm-zoom/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?stm-zoom=$matches[1]&cpage=$matches[2]\";s:34:\"stm-zoom/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?stm-zoom=$matches[1]&wc-api=$matches[3]\";s:40:\"stm-zoom/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"stm-zoom/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"stm-zoom/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?stm-zoom=$matches[1]&page=$matches[2]\";s:25:\"stm-zoom/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"stm-zoom/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"stm-zoom/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"stm-zoom/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"stm-zoom/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"stm-zoom/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"stm-zoom-webinar/([^/]+)/embed/?$\";s:49:\"index.php?stm-zoom-webinar=$matches[1]&embed=true\";s:37:\"stm-zoom-webinar/([^/]+)/trackback/?$\";s:43:\"index.php?stm-zoom-webinar=$matches[1]&tb=1\";s:45:\"stm-zoom-webinar/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?stm-zoom-webinar=$matches[1]&paged=$matches[2]\";s:52:\"stm-zoom-webinar/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?stm-zoom-webinar=$matches[1]&cpage=$matches[2]\";s:42:\"stm-zoom-webinar/([^/]+)/wc-api(/(.*))?/?$\";s:57:\"index.php?stm-zoom-webinar=$matches[1]&wc-api=$matches[3]\";s:48:\"stm-zoom-webinar/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:59:\"stm-zoom-webinar/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:41:\"stm-zoom-webinar/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?stm-zoom-webinar=$matches[1]&page=$matches[2]\";s:33:\"stm-zoom-webinar/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"stm-zoom-webinar/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"stm-zoom-webinar/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"stm-zoom-webinar/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"stm-zoom-webinar/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"stm-zoom-webinar/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:38:\"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]\";s:44:\"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1071&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:19:{i:0;s:32:\"a2-optimized-wp/a2-optimized.php\";i:1;s:17:\"bookit/bookit.php\";i:2;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:3;s:61:\"consulting-elementor-widgets/consulting-elementor-widgets.php\";i:4;s:36:\"contact-form-7/wp-contact-form-7.php\";i:5;s:51:\"cost-calculator-builder/cost-calculator-builder.php\";i:6;s:49:\"custom-elementor-icons/custom-elementor-icons.php\";i:7;s:32:\"duplicate-page/duplicatepage.php\";i:8;s:23:\"elementor/elementor.php\";i:9;s:59:\"eroom-zoom-meetings-webinar/eroom-zoom-meetings-webinar.php\";i:10;s:33:\"instagram-feed/instagram-feed.php\";i:11;s:27:\"js_composer/js_composer.php\";i:12;s:45:\"pearl-header-builder/pearl_header_builder.php\";i:13;s:38:\"recent-tweets-widget/recent-tweets.php\";i:14;s:23:\"revslider/revslider.php\";i:15;s:29:\"stm-importer/stm-importer.php\";i:16;s:31:\"stm-post-type/stm-post-type.php\";i:17;s:47:\"stm-templates-library/stm-templates-library.php\";i:18;s:27:\"woocommerce/woocommerce.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://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:3:{i:0;s:100:\"/home2/qualstream/public_html/wp-content/themes/consulting/assets/css/layouts/layout_berlin/main.css\";i:1;s:68:\"/home2/qualstream/public_html/wp-content/themes/consulting/style.css\";i:2;s:0:\"\";}', 'no'),
(40, 'template', 'consulting', 'yes'),
(41, 'stylesheet', 'consulting', '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', '57155', '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:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(77, 'widget_text', 'a:3:{i:4;a:4:{s:5:\"title\";s:9:\"Locations\";s:4:\"text\";s:34:\"Noida (INDIA)\r\n\r\nHyderabad (INDIA)\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:11:\"Quick Links\";s:4:\"text\";s:75:\"Home\r\n\r\nOur Services\r\n\r\nIndustries\r\n\r\nAbout Us\r\n\r\nJob Posting\r\n\r\nContact Us\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}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:3:{s:17:\"bookit/bookit.php\";a:2:{i:0;s:26:\"Bookit\\Classes\\Base\\Plugin\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '6485', 'yes'),
(82, 'page_on_front', '1071', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '7316', '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', '1652083742', '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, 'initial_db_version', '49752', 'yes'),
(99, 'qs_user_roles', 'a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:117:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:18:\"bcn_manage_options\";b:1;s:19:\"manage_bookit_staff\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:19:\"manage_bookit_staff\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"bookit_customer\";a:2:{s:4:\"name\";s:15:\"Bookit Customer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:0;}}s:12:\"bookit_staff\";a:2:{s:4:\"name\";s:12:\"Bookit Staff\";s:12:\"capabilities\";a:4:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:0;s:19:\"manage_bookit_staff\";b:1;}}}', 'yes'),
(100, 'fresh_site', '0', 'yes'),
(101, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(103, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(104, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(105, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'cron', 'a:23:{i:1712784387;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1712785475;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1712786418;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1712787324;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:1712787786;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1712792499;a:2:{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;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1712793600;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1712795700;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1712796069;a:2:{s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1712797039;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1712797541;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:1712807829;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1712818629;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1712835699;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1712835732;a:3:{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;}}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:1712839269;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1712839290;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1713056289;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1713160800;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1713267699;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1713314411;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:1713387816;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'yes'),
(108, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(118, 'recovery_keys', 'a:0:{}', 'yes'),
(119, 'theme_mods_twentytwentyone', 'a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617626400;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}s:18:\"nav_menu_locations\";a:0:{}}', 'no'),
(120, 'https_detection_errors', 'a:0:{}', 'yes'),
(148, 'finished_updating_comment_type', '1', 'yes'),
(150, 'current_theme', 'Consulting', 'yes'),
(151, 'theme_mods_qualstream', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617625836;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:1:{i:0;i:9022;}s:9:\"sidebar_1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar_2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}', 'no'),
(152, 'theme_switched', '', 'yes'),
(153, 'the7_dev_tool_option', 'a:8:{s:11:\"theme_title\";s:4:\"The7\";s:9:\"theme_url\";s:15:\"http://the7.io/\";s:12:\"theme_author\";s:11:\"Dream-Theme\";s:16:\"theme_author_uri\";s:23:\"http://dream-theme.com/\";s:17:\"theme_description\";s:384:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and you’ll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:10:\"theme_tags\";s:186:\"multipurpose, responsive, retina ready, SEO ready, mobile friendly, iOS, material design, clean, minimal, business, corporate, portfolio, creative, photography, one page site, micro site\";s:10:\"theme_name\";s:4:\"The7\";s:10:\"screenshot\";s:0:\"\";}', 'yes'),
(154, 'widget_presscore-contact-info-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(155, 'widget_presscore-custom-menu-one', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(156, 'widget_presscore-custom-menu-two', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(157, 'widget_presscore-blog-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(158, 'widget_presscore-blog-categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(159, 'widget_presscore-progress-bars-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(160, 'widget_presscore-contact-form-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(161, 'widget_presscore-accordion-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(162, 'the7_db_version', '7.8.0', 'yes'),
(163, 'the7_dismissed_admin_notices', 'a:1:{i:0;s:12:\"the7_updated\";}', 'yes'),
(164, 'the7_force_regen_css', '1', 'yes'),
(165, 'the7_beautiful_loader_inline_css', '', 'yes'),
(166, 'the7_style_version', '7.8.2', 'yes'),
(167, 'the7_plugins_list', 'a:17:{i:0;a:8:{s:4:\"name\";s:13:\"The7 Elements\";s:4:\"slug\";s:12:\"dt-the7-core\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"2.5.6\";s:6:\"tested\";s:5:\"5.7.0\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:59:\"https://repo.the7.io/plugins/download.php?item=dt-the7-core\";}i:1;a:8:{s:4:\"name\";s:8:\"The7 CLI\";s:4:\"slug\";s:8:\"the7-cli\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:6:\"tested\";s:5:\"5.7.0\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:55:\"https://repo.the7.io/plugins/download.php?item=the7-cli\";}i:2;a:7:{s:4:\"name\";s:26:\"The7 WPBakery Page Builder\";s:4:\"slug\";s:11:\"js_composer\";s:8:\"required\";b:0;s:7:\"version\";s:7:\"6.6.0.1\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:58:\"https://repo.the7.io/plugins/download.php?item=js_composer\";}i:3;a:7:{s:4:\"name\";s:22:\"The7 Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"6.4.6\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:56:\"https://repo.the7.io/plugins/download.php?item=revslider\";}i:4;a:7:{s:4:\"name\";s:53:\"The7 Go Pricing - WordPress Responsive Pricing Tables\";s:4:\"slug\";s:10:\"go_pricing\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"3.3.17\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:57:\"https://repo.the7.io/plugins/download.php?item=go_pricing\";}i:5;a:7:{s:4:\"name\";s:19:\"The7 LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"6.10.2\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:58:\"https://repo.the7.io/plugins/download.php?item=LayerSlider\";}i:6;a:9:{s:4:\"name\";s:40:\"The7 Ultimate Addons for Visual Composer\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"3.19.9\";s:4:\"icon\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";}s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:65:\"https://repo.the7.io/plugins/download.php?item=Ultimate_VC_Addons\";}i:7;a:7:{s:4:\"name\";s:16:\"The7 ConvertPlus\";s:4:\"slug\";s:11:\"convertplug\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"3.5.17\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:58:\"https://repo.the7.io/plugins/download.php?item=convertplug\";}i:8;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"required\";b:0;}i:9;a:3:{s:4:\"name\";s:20:\"Recent Tweets Widget\";s:4:\"slug\";s:20:\"recent-tweets-widget\";s:8:\"required\";b:0;}i:10;a:3:{s:4:\"name\";s:49:\"Give – Donation Plugin and Fundraising Platform\";s:4:\"slug\";s:4:\"give\";s:8:\"required\";b:0;}i:11;a:3:{s:4:\"name\";s:27:\"Modern Events Calendar Lite\";s:4:\"slug\";s:27:\"modern-events-calendar-lite\";s:8:\"required\";b:0;}i:12;a:3:{s:4:\"name\";s:18:\"Hotel Booking Lite\";s:4:\"slug\";s:28:\"motopress-hotel-booking-lite\";s:8:\"required\";b:0;}i:13;a:3:{s:4:\"name\";s:15:\"Stripe Payments\";s:4:\"slug\";s:15:\"stripe-payments\";s:8:\"required\";b:0;}i:14;a:3:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:8:\"required\";b:0;}i:15;a:3:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"required\";b:0;}i:16;a:3:{s:4:\"name\";s:23:\"TI WooCommerce Wishlist\";s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:8:\"required\";b:0;}}', 'no'),
(168, 'optionsframework', 'a:2:{s:2:\"id\";s:4:\"the7\";s:12:\"knownoptions\";a:1:{i:0;s:4:\"the7\";}}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(169, 'the7', 'a:816:{s:21:\"general-content_width\";s:6:\"1300px\";s:14:\"general-layout\";s:4:\"wide\";s:17:\"general-box_width\";s:6:\"1280px\";s:22:\"general-boxed_bg_color\";s:7:\"#f7f7f7\";s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:27:\"general-boxed_bg_fullscreen\";s:1:\"1\";s:22:\"general-boxed_bg_fixed\";s:1:\"1\";s:16:\"general-bg_color\";s:19:\"rgba(255,255,255,1)\";s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"general-bg_fullscreen\";b:0;s:16:\"general-bg_fixed\";b:0;s:30:\"general-content_boxes_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:14:\"dividers-color\";s:16:\"rgba(0,0,0,0.08)\";s:25:\"general-accent_color_mode\";s:8:\"gradient\";s:23:\"general-accent_bg_color\";s:7:\"#5891e8\";s:32:\"general-accent_bg_color_gradient\";s:31:\"135deg|#1ebbf0 30%|#39dfaa 100%\";s:21:\"general-border_radius\";s:3:\"0px\";s:25:\"general-beautiful_loading\";s:7:\"enabled\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:32:\"general-fullscreen_overlay_color\";s:19:\"rgba(255,255,255,1)\";s:35:\"general-fullscreen_overlay_gradient\";s:31:\"135deg|#2edded 30%|#0084bb 100%\";s:34:\"general-fullscreen_overlay_opacity\";i:100;s:21:\"general-spinner_color\";s:19:\"rgba(51,51,51,0.25)\";s:20:\"general-loader_style\";s:14:\"double_circles\";s:21:\"general-custom_loader\";s:0:\"\";s:32:\"general-lightbox_overlay_opacity\";i:85;s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:6:\"preset\";s:7:\"skin11r\";s:13:\"header-layout\";s:6:\"inline\";s:21:\"header-classic-height\";s:5:\"180px\";s:28:\"header-classic-menu-position\";s:4:\"left\";s:26:\"header-classic-menu-margin\";s:7:\"0px 0px\";s:28:\"header-classic-logo-position\";s:4:\"left\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:20:\"header-inline-height\";s:4:\"90px\";s:27:\"header-inline-menu-position\";s:6:\"center\";s:26:\"header-inline-is_fullwidth\";s:1:\"0\";s:19:\"header-split-height\";s:5:\"100px\";s:26:\"header-split-menu-position\";s:7:\"outside\";s:25:\"header-split-is_fullwidth\";s:1:\"0\";s:17:\"header-side-width\";s:5:\"300px\";s:20:\"header-side-position\";s:5:\"right\";s:27:\"header-side-content-padding\";s:17:\"50px 0px 40px 0px\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:6:\"center\";s:27:\"header-side-menu-items_link\";s:9:\"fullwidth\";s:22:\"layout-top_line-height\";s:5:\"130px\";s:29:\"layout-top_line-logo-position\";s:4:\"left\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"0\";s:22:\"header-side_line-width\";s:4:\"60px\";s:27:\"layout-side_line-v_position\";s:4:\"left\";s:25:\"layout-side_line-position\";s:5:\"above\";s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:17:\"header_navigation\";s:9:\"slide_out\";s:22:\"header-slide_out-width\";s:5:\"400px\";s:25:\"header-slide_out-position\";s:4:\"left\";s:32:\"header-slide_out-content-padding\";s:17:\"50px 0px 50px 0px\";s:34:\"header-slide_out-overlay-animation\";s:4:\"fade\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:30:\"header-slide_out-logo-position\";s:12:\"fully_inside\";s:37:\"header-slide_out-menu-items_alignment\";s:6:\"center\";s:32:\"header-slide_out-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:30:\"header-overlay-content-padding\";s:15:\"0px 0px 0px 0px\";s:28:\"header-overlay-menu-position\";s:8:\"v_center\";s:28:\"header-overlay-logo-position\";s:12:\"fully_inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-classic-show_elements\";s:1:\"1\";s:23:\"header-classic-elements\";a:4:{s:12:\"top_bar_left\";a:1:{i:0;s:11:\"custom_menu\";}s:13:\"top_bar_right\";a:1:{i:0;s:6:\"search\";}s:15:\"near_menu_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_logo_right\";a:2:{i:0;s:5:\"phone\";i:1;s:5:\"email\";}}s:44:\"header-classic-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#888888\";s:50:\"header-classic-elements-near_menu-custom-icon-size\";i:16;s:51:\"header-classic-elements-near_menu-custom-icon-color\";s:0:\"\";s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 40px\";s:44:\"header-classic-elements-near_logo-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#888888\";s:50:\"header-classic-elements-near_logo-custom-icon-size\";i:16;s:51:\"header-classic-elements-near_logo-custom-icon-color\";s:0:\"\";s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-inline-show_elements\";s:1:\"1\";s:22:\"header-inline-elements\";a:3:{s:12:\"top_bar_left\";a:2:{i:0;s:5:\"phone\";i:1;s:13:\"working_hours\";}s:13:\"top_bar_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_menu_right\";a:1:{i:0;s:6:\"search\";}}s:43:\"header-inline-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#333333\";s:49:\"header-inline-elements-near_menu-custom-icon-size\";i:16;s:50:\"header-inline-elements-near_menu-custom-icon-color\";s:0:\"\";s:46:\"header-inline-elements-near_menu_right-padding\";s:15:\"0px 0px 0px 5px\";s:26:\"header-split-show_elements\";s:1:\"1\";s:21:\"header-split-elements\";a:1:{s:14:\"near_menu_left\";a:1:{i:0;s:6:\"search\";}}s:42:\"header-split-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#888888\";s:48:\"header-split-elements-near_menu-custom-icon-size\";i:16;s:49:\"header-split-elements-near_menu-custom-icon-color\";s:0:\"\";s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 20px 0px 20px\";s:25:\"header-side-show_elements\";s:1:\"1\";s:20:\"header-side-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:5:\"email\";i:2;s:5:\"skype\";}}s:41:\"header-side-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#888888\";s:47:\"header-side-elements-near_menu-custom-icon-size\";i:16;s:48:\"header-side-elements-near_menu-custom-icon-color\";s:0:\"\";s:39:\"header-side-elements-below_menu-padding\";s:17:\"0px 35px 0px 35px\";s:29:\"header-top_line-show_elements\";s:1:\"0\";s:24:\"header-top_line-elements\";a:0:{}s:47:\"header-top_line-elements-in_top_line-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#888888\";s:53:\"header-top_line-elements-in_top_line-custom-icon-size\";i:16;s:54:\"header-top_line-elements-in_top_line-custom-icon-color\";s:0:\"\";s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:45:\"header-top_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#888888\";s:51:\"header-top_line-elements-near_menu-custom-icon-size\";i:16;s:52:\"header-top_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:43:\"header-top_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:30:\"header-side_line-show_elements\";s:1:\"0\";s:25:\"header-side_line-elements\";a:0:{}s:46:\"header-side_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#888888\";s:52:\"header-side_line-elements-near_menu-custom-icon-size\";i:16;s:53:\"header-side_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:44:\"header-side_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"0\";s:25:\"header-menu_icon-elements\";a:0:{}s:46:\"header-menu_icon-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#888888\";s:52:\"header-menu_icon-elements-near_menu-custom-icon-size\";i:16;s:53:\"header-menu_icon-elements-near_menu-custom-icon-color\";s:0:\"\";s:44:\"header-menu_icon-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:18:\"top_bar-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";s:14:\"text_transform\";s:4:\"none\";}s:18:\"top_bar-font-color\";s:7:\"#b1b4b8\";s:24:\"top_bar-custom-icon-size\";i:16;s:25:\"top_bar-custom-icon-color\";s:0:\"\";s:37:\"header-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#333333\";s:43:\"header-mobile-microwidgets-custom-icon-size\";i:16;s:44:\"header-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:35:\"menu-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";}s:35:\"menu-mobile-microwidgets-font-color\";s:7:\"#b1b4b8\";s:41:\"menu-mobile-microwidgets-custom-icon-size\";i:16;s:42:\"menu-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-search-second-header-switch\";s:9:\"near_logo\";s:25:\"microwidgets-search_style\";s:5:\"popup\";s:27:\"header-elements-search-icon\";s:6:\"custom\";s:34:\"header-elements-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"header-elements-search-caption\";s:0:\"\";s:30:\"microwidgets-search-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";}s:24:\"microwidgets-search_icon\";s:6:\"custom\";s:31:\"microwidgets-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"microwidgets-search_font-color\";s:7:\"#aaaaaa\";s:29:\"microwidgets-search_icon-size\";i:16;s:36:\"header-elements-search-input-caption\";s:22:\"Type and hit enter …\";s:26:\"microwidgets-search-height\";s:4:\"34px\";s:25:\"microwidgets-search-width\";s:5:\"200px\";s:32:\"microwidgets-search-active-width\";s:5:\"200px\";s:28:\"microwidgets-search_bg-color\";s:7:\"#f4f4f4\";s:36:\"microwidgets-search_bg_border_radius\";s:3:\"0px\";s:35:\"microwidgets-search_bg_border_width\";s:3:\"0px\";s:33:\"microwidgets-search_input-padding\";s:9:\"12px 12px\";s:35:\"microwidgets-search_bg-border-color\";s:7:\"#e2e2e2\";s:30:\"microwidgets-search_overlay-bg\";s:5:\"color\";s:36:\"microwidgets-search_overlay-bg-color\";s:15:\"rgba(0,0,0,0.9)\";s:39:\"microwidgets-search_overlay-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:25:\"header-elements-search-by\";s:7:\"general\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:51:\"header-elements-contact-address-first-header-switch\";s:9:\"near_logo\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:39:\"header-elements-contact-address-caption\";s:44:\"8500 Beverly Boulevard Los Angeles, CA 90048\";s:36:\"header-elements-contact-address-icon\";s:6:\"custom\";s:43:\"header-elements-contact-address-custom-icon\";s:25:\"the7-mw-icon-address-bold\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:49:\"header-elements-contact-email-first-header-switch\";s:9:\"near_logo\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-email-caption\";s:18:\"sales@yoursite.com\";s:34:\"header-elements-contact-email-icon\";s:6:\"custom\";s:41:\"header-elements-contact-email-custom-icon\";s:22:\"the7-mw-icon-mail-bold\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:49:\"header-elements-contact-phone-first-header-switch\";s:12:\"top_bar_left\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-phone-caption\";s:13:\"011 322 44 56\";s:34:\"header-elements-contact-phone-icon\";s:6:\"custom\";s:41:\"header-elements-contact-phone-custom-icon\";s:31:\"icomoon-the7-font-the7-phone-06\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-skype-caption\";s:10:\"Your_Skype\";s:34:\"header-elements-contact-skype-icon\";s:6:\"custom\";s:41:\"header-elements-contact-skype-custom-icon\";s:23:\"the7-mw-icon-skype-bold\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:49:\"header-elements-contact-clock-first-header-switch\";s:12:\"top_bar_left\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-clock-caption\";s:32:\"Monday – Friday 10 AM – 8 PM\";s:34:\"header-elements-contact-clock-icon\";s:6:\"custom\";s:41:\"header-elements-contact-clock-custom-icon\";s:31:\"icomoon-the7-font-the7-clock-01\";s:50:\"header-elements-contact-multipurpose_1-on-desktops\";s:4:\"show\";s:58:\"header-elements-contact-multipurpose_1-first-header-switch\";s:9:\"near_logo\";s:59:\"header-elements-contact-multipurpose_1-second-header-switch\";s:7:\"in_menu\";s:46:\"header-elements-contact-multipurpose_1-caption\";s:0:\"\";s:43:\"header-elements-contact-multipurpose_1-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_1-custom-icon\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_2-on-desktops\";s:4:\"show\";s:58:\"header-elements-contact-multipurpose_2-first-header-switch\";s:9:\"near_logo\";s:59:\"header-elements-contact-multipurpose_2-second-header-switch\";s:7:\"in_menu\";s:46:\"header-elements-contact-multipurpose_2-caption\";s:0:\"\";s:43:\"header-elements-contact-multipurpose_2-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_2-custom-icon\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_3-on-desktops\";s:4:\"show\";s:58:\"header-elements-contact-multipurpose_3-first-header-switch\";s:9:\"near_logo\";s:59:\"header-elements-contact-multipurpose_3-second-header-switch\";s:7:\"in_menu\";s:46:\"header-elements-contact-multipurpose_3-caption\";s:0:\"\";s:43:\"header-elements-contact-multipurpose_3-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_3-custom-icon\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_4-on-desktops\";s:4:\"show\";s:58:\"header-elements-contact-multipurpose_4-first-header-switch\";s:9:\"near_logo\";s:59:\"header-elements-contact-multipurpose_4-second-header-switch\";s:7:\"in_menu\";s:46:\"header-elements-contact-multipurpose_4-caption\";s:0:\"\";s:43:\"header-elements-contact-multipurpose_4-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_4-custom-icon\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:26:\"header-elements-login-icon\";s:6:\"custom\";s:33:\"header-elements-login-custom-icon\";s:23:\"the7-mw-icon-login-bold\";s:36:\"header-elements-login-use_logout_url\";b:0;s:25:\"header-elements-login-url\";s:22:\"http://themeforest.net\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:36:\"header-elements-button-1-on-desktops\";s:4:\"show\";s:44:\"header-elements-button-1-first-header-switch\";s:9:\"near_logo\";s:45:\"header-elements-button-1-second-header-switch\";s:7:\"in_menu\";s:29:\"header-elements-button-1-name\";s:6:\"Button\";s:28:\"header-elements-button-1-url\";s:0:\"\";s:31:\"header-elements-button-1-target\";b:0;s:38:\"header-elements-button-1-smooth-scroll\";b:0;s:35:\"header-elements-button-1-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:38:\"header-elements-button-1-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-1-border_width\";s:3:\"1px\";s:32:\"header-elements-button-1-padding\";s:19:\"10px 20px 10px 20px\";s:29:\"header-elements-button-1-icon\";b:0;s:34:\"header-elements-button-1-icon-size\";i:14;s:36:\"header-elements-button-1-choose-icon\";s:0:\"\";s:38:\"header-elements-button-1-icon-position\";s:5:\"right\";s:35:\"header-elements-button-1-icon-color\";s:5:\"color\";s:40:\"header-elements-button-1-icon-color-mono\";s:7:\"#ffffff\";s:44:\"header-elements-button-1-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-1-border-color\";s:6:\"accent\";s:42:\"header-elements-button-1-border-color-mono\";s:7:\"#ffffff\";s:27:\"header-elements-button-1-bg\";s:6:\"accent\";s:33:\"header-elements-button-1-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-1-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:41:\"header-elements-button-1-hover-icon-color\";s:5:\"color\";s:46:\"header-elements-button-1-hover-icon-color-mono\";s:7:\"#ffffff\";s:50:\"header-elements-button-1-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-1-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-1-hover-border-color-mono\";s:7:\"#ffffff\";s:33:\"header-elements-button-1-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-1-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-1-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:36:\"header-elements-button-2-on-desktops\";s:4:\"show\";s:44:\"header-elements-button-2-first-header-switch\";s:9:\"near_logo\";s:45:\"header-elements-button-2-second-header-switch\";s:7:\"in_menu\";s:29:\"header-elements-button-2-name\";s:6:\"Button\";s:28:\"header-elements-button-2-url\";s:0:\"\";s:31:\"header-elements-button-2-target\";b:0;s:38:\"header-elements-button-2-smooth-scroll\";b:0;s:35:\"header-elements-button-2-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:38:\"header-elements-button-2-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-2-border_width\";s:3:\"1px\";s:32:\"header-elements-button-2-padding\";s:19:\"10px 20px 10px 20px\";s:29:\"header-elements-button-2-icon\";b:0;s:34:\"header-elements-button-2-icon-size\";i:14;s:36:\"header-elements-button-2-choose-icon\";s:0:\"\";s:38:\"header-elements-button-2-icon-position\";s:5:\"right\";s:35:\"header-elements-button-2-icon-color\";s:5:\"color\";s:40:\"header-elements-button-2-icon-color-mono\";s:7:\"#ffffff\";s:44:\"header-elements-button-2-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-2-border-color\";s:6:\"accent\";s:42:\"header-elements-button-2-border-color-mono\";s:7:\"#ffffff\";s:27:\"header-elements-button-2-bg\";s:6:\"accent\";s:33:\"header-elements-button-2-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-2-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:41:\"header-elements-button-2-hover-icon-color\";s:5:\"color\";s:46:\"header-elements-button-2-hover-icon-color-mono\";s:7:\"#ffffff\";s:50:\"header-elements-button-2-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-2-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-2-hover-border-color-mono\";s:7:\"#ffffff\";s:33:\"header-elements-button-2-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-2-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-2-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:40:\"header-elements-text-first-header-switch\";s:9:\"near_logo\";s:41:\"header-elements-text-second-header-switch\";s:7:\"in_menu\";s:20:\"header-elements-text\";s:35:\"Some call to action text goes here!\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"show\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-text-2-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-2\";s:35:\"Some call to action text goes here!\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-3\";s:35:\"Some call to action text goes here!\";s:34:\"header-elements-text-4-on-desktops\";s:4:\"show\";s:42:\"header-elements-text-4-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-text-4-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-4\";s:0:\"\";s:34:\"header-elements-text-5-on-desktops\";s:4:\"show\";s:42:\"header-elements-text-5-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-text-5-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-5\";s:0:\"\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:41:\"header-elements-menu-second-header-switch\";s:6:\"hidden\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:25:\"header-elements-menu-icon\";s:6:\"custom\";s:32:\"header-elements-menu_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:26:\"header-elements-menu2-icon\";s:6:\"custom\";s:33:\"header-elements-menu2_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:45:\"header-elements-soc_icons-first-header-switch\";s:13:\"top_bar_right\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"1px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:29:\"header-elements-soc_icons_gap\";i:5;s:31:\"header-elements-soc_icons-color\";s:7:\"#aeb1b5\";s:28:\"header-elements-soc_icons-bg\";s:5:\"color\";s:34:\"header-elements-soc_icons-bg-color\";s:16:\"rgba(0,0,0,0.06)\";s:37:\"header-elements-soc_icons-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:32:\"header-elements-soc_icons-border\";s:8:\"disabled\";s:38:\"header-elements-soc_icons-border-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:34:\"header-elements-soc_icons-hover-bg\";s:6:\"accent\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:18:\"rgba(21,191,230,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:7:\"#ffffff\";s:25:\"header-elements-soc_icons\";a:4:{i:1;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:1:\"/\";}i:2;a:2:{s:4:\"icon\";s:7:\"twitter\";s:3:\"url\";s:1:\"/\";}i:3;a:2:{s:4:\"icon\";s:9:\"instagram\";s:3:\"url\";s:1:\"/\";}i:4;a:2:{s:4:\"icon\";s:8:\"you-tube\";s:3:\"url\";s:1:\"/\";}}s:14:\"top-bar-height\";s:4:\"36px\";s:15:\"top_bar-padding\";s:11:\"3px 3px 0px\";s:16:\"top_bar-bg-color\";s:19:\"rgba(255,255,255,0)\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:14:\"fullwidth_line\";s:18:\"top_bar-line-color\";s:19:\"rgba(51,51,51,0.11)\";s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:15:\"header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:23:\"header-bg-is_fullscreen\";b:0;s:18:\"header-bg-is_fixed\";b:0;s:17:\"header-decoration\";s:6:\"shadow\";s:23:\"header-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:28:\"header-classic-menu-bg-style\";s:5:\"solid\";s:28:\"header-classic-menu-bg-color\";s:13:\"rgba(0,0,0,1)\";s:21:\"header-mixed-bg-color\";s:19:\"rgba(255,255,255,1)\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:25:\"layout-top_line-is_sticky\";s:1:\"0\";s:28:\"header-mixed-sticky-bg-color\";s:7:\"#000000\";s:29:\"header-mixed-floating-top-bar\";b:0;s:21:\"header-menu_icon-size\";s:6:\"medium\";s:24:\"header-menu_icon-bg-size\";s:4:\"54px\";s:33:\"header-menu_icon-bg-border-radius\";s:3:\"0px\";s:22:\"header-menu_icon-color\";s:7:\"#000000\";s:25:\"header-menu_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:28:\"header-menu_icon-hover-color\";s:7:\"#000000\";s:31:\"header-menu_icon-hover-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:39:\"header-slide_out-overlay-bg-color-style\";s:5:\"color\";s:33:\"header-slide_out-overlay-bg-color\";s:18:\"rgba(17,17,17,0.4)\";s:36:\"header-slide_out-overlay-bg-gradient\";s:58:\"135deg|rgba(205,183,226,0.4) 30%|rgba(130,20,130,0.4) 100%\";s:35:\"header-slide_out-overlay-bg-opacity\";i:40;s:22:\"header-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"16\";s:14:\"text_transform\";s:4:\"none\";}s:21:\"header-menu-icon-size\";i:14;s:31:\"header-menu-show_next_lvl_icons\";b:0;s:39:\"header-menu-submenu-parent_is_clickable\";s:1:\"1\";s:31:\"header-menu-subtitle-typography\";a:2:{s:11:\"font_family\";s:15:\"Arial:400italic\";s:9:\"font_size\";s:2:\"11\";}s:22:\"header-menu-font-color\";s:7:\"#333333\";s:34:\"header-menu-hover-font-color-style\";s:5:\"color\";s:28:\"header-menu-hover-font-color\";s:7:\"#333333\";s:31:\"header-menu-hover-font-gradient\";s:30:\"90deg|#8224e3 30%|#751257 100%\";s:40:\"header-menu-active_item-font-color-style\";s:5:\"color\";s:34:\"header-menu-active_item-font-color\";s:7:\"#333333\";s:37:\"header-menu-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:24:\"header-menu-item-padding\";s:15:\"4px 4px 4px 4px\";s:23:\"header-menu-item-margin\";s:19:\"18px 14px 18px 14px\";s:39:\"header-menu-item-surround_margins-style\";s:8:\"disabled\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"30px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"1\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:27:\"header-menu-dividers-height\";s:4:\"24px\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:26:\"header-menu-dividers-color\";s:19:\"rgba(17,17,17,0.14)\";s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:42:\"header-menu-decoration-underline-direction\";s:13:\"left_to_right\";s:44:\"header-menu-decoration-underline-color-style\";s:6:\"accent\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#1e73be\";s:41:\"header-menu-decoration-underline-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:46:\"header-menu-decoration-other-hover-color-style\";s:6:\"accent\";s:40:\"header-menu-decoration-other-hover-color\";s:22:\"rgba(255,255,255,0.15)\";s:43:\"header-menu-decoration-other-hover-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:36:\"header-menu-decoration-other-opacity\";i:15;s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:45:\"header-menu-decoration-other-hover-line-color\";s:20:\"rgba(221,51,51,0.23)\";s:48:\"header-menu-decoration-other-hover-line-gradient\";s:55:\"135deg|rgba(255,255,255,0.23) 30%|rgba(0,0,0,0.23) 100%\";s:47:\"header-menu-decoration-other-hover-line-opacity\";i:23;s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:41:\"header-menu-decoration-other-active-color\";s:22:\"rgba(255,255,255,0.15)\";s:44:\"header-menu-decoration-other-active-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:43:\"header-menu-decoration-other-active-opacity\";i:15;s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:46:\"header-menu-decoration-other-active-line-color\";s:20:\"rgba(130,36,227,0.3)\";s:49:\"header-menu-decoration-other-active-line-gradient\";s:56:\"135deg|rgba(221,51,51,0.3) 30%|rgba(129,215,66,0.3) 100%\";s:48:\"header-menu-decoration-other-active-line-opacity\";i:30;s:42:\"header-menu-decoration-other-border-radius\";i:3;s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:28:\"header-menu-submenu-bg-color\";s:7:\"#ffffff\";s:28:\"header-menu-submenu-bg-width\";s:5:\"280px\";s:30:\"header-menu-submenu-bg-padding\";s:17:\"9px 10px 9px 10px\";s:30:\"header-menu-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";s:14:\"text_transform\";s:4:\"none\";}s:29:\"header-menu-submenu-icon-size\";i:14;s:39:\"header-menu-submenu-show_next_lvl_icons\";s:1:\"1\";s:39:\"header-menu-submenu-subtitle-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-menu-submenu-font-color\";s:7:\"#333333\";s:42:\"header-menu-submenu-hover-font-color-style\";s:6:\"accent\";s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#895cb8\";s:39:\"header-menu-submenu-hover-font-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:43:\"header-menu-submenu-active-font-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#ffffff\";s:40:\"header-menu-submenu-active-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:32:\"header-menu-submenu-item-padding\";s:19:\"10px 10px 10px 10px\";s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 2px 0px\";s:28:\"header-menu-submenu-bg-hover\";s:10:\"background\";s:40:\"header-menu-submenu-hover-bg-color-style\";s:6:\"accent\";s:36:\"header-menu-submenu-hover-bg-opacity\";i:7;s:34:\"header-menu-submenu-hover-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:37:\"header-menu-submenu-hover-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:41:\"header-menu-submenu-active-bg-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-active-bg-opacity\";i:7;s:35:\"header-menu-submenu-active-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:38:\"header-menu-submenu-active-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:35:\"header-mega-menu-submenu-bg-padding\";s:19:\"20px 10px 20px 10px\";s:39:\"header-mega-menu-submenu-column-padding\";s:17:\"0px 10px 0px 10px\";s:37:\"header-mega-menu-submenu-column-width\";s:5:\"260px\";s:33:\"header-mega-menu-title-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"16\";s:14:\"text_transform\";s:9:\"uppercase\";}s:32:\"header-mega-menu-title-icon-size\";i:16;s:33:\"header-mega-menu-title-font-color\";s:7:\"#333333\";s:45:\"header-mega-menu-title-hover-font-color-style\";s:8:\"gradient\";s:39:\"header-mega-menu-title-hover-font-color\";s:7:\"#ffffff\";s:42:\"header-mega-menu-title-hover-font-gradient\";s:29:\"90deg|#1e73be 30%|#eeee22 99%\";s:51:\"header-mega-menu-title-active_item-font-color-style\";s:8:\"gradient\";s:45:\"header-mega-menu-title-active_item-font-color\";s:7:\"#ffffff\";s:48:\"header-mega-menu-title-active_item-font-gradient\";s:30:\"90deg|#8224e3 30%|#eeee22 100%\";s:32:\"header-mega-menu-desc-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"10\";}s:32:\"header-mega-menu-desc-font-color\";s:7:\"#333333\";s:35:\"header-mega-menu-widget-title-color\";s:7:\"#333333\";s:34:\"header-mega-menu-widget-font-color\";s:7:\"#333333\";s:36:\"header-mega-menu-widget-accent-color\";s:0:\"\";s:30:\"header-mega-menu-items-padding\";s:17:\"9px 10px 9px 10px\";s:31:\"header-show_floating_navigation\";s:1:\"1\";s:33:\"header-floating_navigation-height\";s:4:\"60px\";s:35:\"header-floating_navigation-bg-color\";s:19:\"rgba(255,255,255,1)\";s:35:\"header-floating_navigation-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:43:\"header-floating_navigation-bg-is_fullscreen\";b:0;s:37:\"header-floating_navigation-decoration\";s:6:\"shadow\";s:43:\"header-floating_navigation-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:32:\"header-floating_navigation-style\";s:6:\"sticky\";s:37:\"header-floating_navigation-show_after\";s:4:\"94px\";s:38:\"header-floating_navigation-font-normal\";s:7:\"default\";s:37:\"header-floating_navigation-font-color\";s:7:\"#ffffff\";s:37:\"header-floating_navigation-font-hover\";s:7:\"default\";s:43:\"header-floating_navigation-hover-font-color\";s:7:\"#ffffff\";s:46:\"header-floating_navigation-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:38:\"header-floating_navigation-font-active\";s:7:\"default\";s:49:\"header-floating_navigation-active_item-font-color\";s:7:\"#ffffff\";s:52:\"header-floating_navigation-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:34:\"header-floating_navigation-top-bar\";b:0;s:32:\"header-mobile-first_switch-after\";s:5:\"990px\";s:33:\"header-mobile-first_switch-layout\";s:10:\"right_left\";s:33:\"header-mobile-first_switch-height\";s:4:\"60px\";s:33:\"header-mobile-second_switch-after\";s:5:\"600px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"right_left\";s:34:\"header-mobile-second_switch-height\";s:4:\"60px\";s:29:\"header-mobile-header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:28:\"header-mobile-menu_icon-size\";s:5:\"small\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#333333\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"0\";s:32:\"header-mobile-menu_icon-bg-color\";s:19:\"rgba(255,255,255,0)\";s:31:\"header-mobile-menu_icon-bg-size\";s:4:\"40px\";s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"16\";s:14:\"text_transform\";s:4:\"none\";}s:32:\"header-mobile-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";s:14:\"text_transform\";s:4:\"none\";}s:29:\"header-mobile-menu-font-color\";s:7:\"#333333\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:38:\"header-mobile-menu-font-hover-gradient\";s:30:\"90deg|#b78ce2 30%|#1e73be 100%\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:30:\"header-mobile-overlay-bg-color\";s:18:\"rgba(17,17,17,0.5)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"330px\";s:24:\"header-mobile-menu-align\";s:5:\"right\";s:19:\"header-logo_regular\";a:2:{i:0;s:66:\"/inc/presets/images/full/skin11r.header-logo-regular.png?w=57&h=57\";i:1;i:0;}s:14:\"header-logo_hd\";a:2:{i:0;s:63:\"/inc/presets/images/full/skin11r.header-logo-hd.png?w=114&h=114\";i:1;i:0;}s:19:\"header-logo-padding\";s:15:\"0px 5px 0px 0px\";s:36:\"header-style-transparent-choose_logo\";s:6:\"custom\";s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:84:\"/inc/presets/images/full/skin11r.header-style-transparent-logo-regular.png?w=57&h=57\";i:1;i:0;}s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:81:\"/inc/presets/images/full/skin11r.header-style-transparent-logo-hd.png?w=114&h=114\";i:1;i:0;}s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 5px 0px 0px\";s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:48:\"header-style-mixed-top_line-floating-choose_logo\";s:4:\"main\";s:49:\"header-style-mixed-top_line-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:44:\"header-style-mixed-top_line-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:49:\"header-style-mixed-top_line-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:33:\"header-style-floating-choose_logo\";s:6:\"custom\";s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:81:\"/inc/presets/images/full/skin11r.header-style-floating-logo-regular.png?w=44&h=44\";i:1;i:0;}s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:76:\"/inc/presets/images/full/skin11r.header-style-floating-logo-hd.png?w=88&h=88\";i:1;i:0;}s:34:\"header-style-floating-logo-padding\";s:16:\"0px 18px 0px 0px\";s:31:\"header-mobile-first_switch-logo\";s:6:\"mobile\";s:32:\"header-mobile-second_switch-logo\";s:6:\"mobile\";s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:79:\"/inc/presets/images/full/skin11r.header-style-mobile-logo-regular.png?w=44&h=44\";i:1;i:0;}s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:74:\"/inc/presets/images/full/skin11r.header-style-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:43:\"header-transparent-mobile-first_switch-logo\";s:6:\"mobile\";s:44:\"header-transparent-mobile-second_switch-logo\";s:6:\"mobile\";s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:91:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-regular.png?w=44&h=44\";i:1;i:0;}s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:86:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:70:\"/inc/presets/images/full/skin11r.bottom-bar-logo-regular.png?w=28&h=28\";i:1;i:0;}s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:65:\"/inc/presets/images/full/skin11r.bottom-bar-logo-hd.png?w=56&h=56\";i:1;i:0;}s:23:\"bottom_bar-logo-padding\";s:16:\"8px 12px 8px 0px\";s:15:\"general-favicon\";s:0:\"\";s:18:\"general-favicon_hd\";s:0:\"\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:30:\"general-handheld_icon-old_ipad\";s:0:\"\";s:35:\"general-handheld_icon-retina_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:0:\"\";s:21:\"bottom_bar-copyrights\";b:0;s:18:\"bottom_bar-credits\";s:1:\"1\";s:22:\"stripes-stripe_1_color\";s:7:\"#f8f8f9\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";i:100;s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";i:100;s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";i:100;s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3b3f4a\";s:27:\"stripes-stripe_1_text_color\";s:7:\"#787d85\";s:22:\"stripes-stripe_2_color\";s:7:\"#23262d\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#ffffff\";s:32:\"stripes-stripe_2_outline_opacity\";i:15;s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";i:10;s:41:\"stripes-stripe_2_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";i:15;s:30:\"stripes-stripe_2_headers_color\";s:7:\"#ffffff\";s:27:\"stripes-stripe_2_text_color\";s:7:\"#8b9199\";s:22:\"stripes-stripe_3_color\";s:7:\"#000000\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:61:\"/inc/presets/images/full/skin22.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#252728\";s:32:\"stripes-stripe_3_outline_opacity\";i:100;s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";i:10;s:41:\"stripes-stripe_3_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";i:19;s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:13:\"sidebar-width\";s:5:\"350px\";s:25:\"sidebar-vertical_distance\";s:4:\"60px\";s:27:\"sidebar-distance_to_content\";s:4:\"50px\";s:20:\"sidebar-visual_style\";s:13:\"with_dividers\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:26:\"sidebar-divider-horizontal\";s:1:\"0\";s:16:\"sidebar-bg_color\";s:19:\"rgba(247,247,248,1)\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-decoration\";s:4:\"none\";s:32:\"sidebar-decoration_outline_color\";s:16:\"rgba(0,0,0,0.06)\";s:16:\"sidebar-floating\";b:0;s:21:\"sidebar-headers_color\";s:7:\"#333333\";s:26:\"sidebar-primary_text_color\";s:7:\"#8b8d94\";s:22:\"sidebar-responsiveness\";s:5:\"990px\";s:12:\"footer-style\";s:16:\"solid_background\";s:15:\"footer-bg_color\";s:16:\"rgba(26,28,32,1)\";s:17:\"footer-decoration\";s:4:\"none\";s:31:\"footer-decoration_outline_color\";s:21:\"rgba(129,215,66,0.96)\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"footer-slide-out-mode\";s:1:\"0\";s:20:\"footer-headers_color\";s:7:\"#eeeeee\";s:25:\"footer-primary_text_color\";s:7:\"#8b8d94\";s:24:\"footer-accent_text_color\";s:0:\"\";s:14:\"footer-padding\";s:9:\"50px 15px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:13:\"footer-layout\";s:15:\"1/4+1/4+1/4+1/4\";s:21:\"footer-collapse_after\";s:5:\"778px\";s:18:\"bottom_bar-enabled\";s:1:\"1\";s:16:\"bottom_bar-style\";s:18:\"content_width_line\";s:19:\"bottom_bar-bg_color\";s:22:\"rgba(255,255,255,0.12)\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:30:\"bottom_bar-menu-collapse_after\";s:5:\"778px\";s:16:\"bottom_bar-color\";s:7:\"#eeeeee\";s:15:\"bottom_bar-text\";b:0;s:20:\"general-filter_style\";s:7:\"minimal\";s:42:\"general-filter_style-minimal-border_radius\";s:5:\"100px\";s:39:\"general-filter_style-material-line_size\";s:3:\"2px\";s:17:\"filter-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";i:14;s:14:\"text_transform\";s:4:\"none\";}s:22:\"general-filter-padding\";s:17:\"6px 15px 6px 15px\";s:21:\"general-filter-margin\";s:15:\"0px 3px 0px 3px\";s:25:\"general-navigation_margin\";s:4:\"50px\";s:21:\"blog-fancy_date-style\";s:8:\"vertical\";s:20:\"post-show_fancy_date\";s:1:\"1\";s:26:\"post-show_fancy_categories\";s:1:\"1\";s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:27:\"general-show_author_in_blog\";i:1;s:25:\"general-next_prev_in_blog\";i:1;s:32:\"general-show_back_button_in_post\";s:1:\"0\";s:20:\"general-blog_meta_on\";s:1:\"1\";s:22:\"general-blog_meta_date\";s:1:\"1\";s:24:\"general-blog_meta_author\";s:1:\"1\";s:28:\"general-blog_meta_categories\";s:1:\"1\";s:26:\"general-blog_meta_comments\";s:1:\"1\";s:22:\"general-blog_meta_tags\";s:1:\"1\";s:22:\"general-show_rel_posts\";s:1:\"1\";s:28:\"general-rel_posts_head_title\";s:13:\"Related Posts\";s:21:\"general-rel_posts_max\";i:6;s:19:\"general-title_align\";s:6:\"center\";s:20:\"general-title_height\";s:5:\"200px\";s:18:\"page_title-padding\";s:9:\"30px 30px\";s:21:\"general-title_bg_mode\";s:10:\"background\";s:22:\"general-title_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:24:\"general-title_decoration\";s:4:\"none\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:4:\"10px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:25:\"general-title_bg_gradient\";s:31:\"135deg|#4a66d6 30%|#12b4ea 100%\";s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:27:\"general-title_bg_fullscreen\";b:0;s:24:\"general-title_bg_overlay\";b:0;s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:27:\"general-title_scroll_effect\";s:7:\"default\";s:25:\"general-title_bg_parallax\";s:1:\"0\";s:17:\"header-background\";s:6:\"normal\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:35:\"general-title_decoration_line_color\";s:19:\"rgba(51,51,51,0.11)\";s:36:\"general-title_decoration_line_height\";s:3:\"6px\";s:35:\"general-title_decoration_line_style\";s:6:\"double\";s:19:\"general-show_titles\";s:1:\"1\";s:29:\"general-page-title-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"34\";s:11:\"line_height\";s:2:\"44\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"general-title_color\";s:7:\"#333333\";s:24:\"general-show_breadcrumbs\";s:1:\"1\";s:22:\"breadcrumbs-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";s:11:\"line_height\";s:2:\"24\";s:14:\"text_transform\";s:4:\"none\";}s:25:\"general-breadcrumbs_color\";s:7:\"#adafb3\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:18:\"breadcrumbs_margin\";s:16:\"10px 0px 0px 0px\";s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:20:\"breadcrumbs_bg_color\";s:17:\"rgba(89,68,146,1)\";s:25:\"breadcrumbs_border_radius\";s:3:\"2px\";s:24:\"breadcrumbs_border_width\";s:3:\"0px\";s:24:\"breadcrumbs_border_color\";s:19:\"rgba(255,255,255,0)\";s:29:\"general-titles_responsiveness\";s:1:\"1\";s:36:\"general-titles-responsiveness-switch\";s:5:\"778px\";s:31:\"general-responsive_title_height\";s:3:\"0px\";s:29:\"general-responsive_title_size\";i:24;s:36:\"general-responsive_title_line_height\";i:34;s:36:\"general-title_responsive_breadcrumbs\";b:0;s:21:\"content-headers_color\";s:7:\"#333333\";s:26:\"content-primary_text_color\";s:7:\"#8b8d94\";s:28:\"content-secondary_text_color\";s:7:\"#adafb3\";s:19:\"content-links_color\";s:7:\"#1ebbf0\";s:17:\"fonts-font_family\";s:6:\"Roboto\";s:14:\"fonts-big_size\";i:16;s:26:\"fonts-big_size_line_height\";i:28;s:17:\"fonts-normal_size\";i:15;s:29:\"fonts-normal_size_line_height\";i:27;s:16:\"fonts-small_size\";i:13;s:28:\"fonts-small_size_line_height\";i:25;s:25:\"fonts-headers-font-family\";s:0:\"\";s:28:\"fonts-headers-text-transform\";s:0:\"\";s:19:\"fonts-h1-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"52\";s:11:\"line_height\";s:2:\"62\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h2-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"34\";s:11:\"line_height\";s:2:\"44\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h3-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"24\";s:11:\"line_height\";s:2:\"34\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h4-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"20\";s:11:\"line_height\";s:2:\"30\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h5-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"16\";s:11:\"line_height\";s:2:\"26\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h6-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";s:11:\"line_height\";s:2:\"24\";s:14:\"text_transform\";s:4:\"none\";}s:13:\"buttons-style\";s:4:\"flat\";s:18:\"buttons-color_mode\";s:6:\"accent\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";s:31:\"135deg|#13aa4a 30%|#84df31 100%\";s:24:\"buttons-hover_color_mode\";s:8:\"gradient\";s:19:\"buttons-hover_color\";s:7:\"#81d742\";s:28:\"buttons-hover_color_gradient\";s:31:\"135deg|#23aadd 30%|#37ce9d 100%\";s:25:\"buttons-border-color_mode\";s:6:\"accent\";s:20:\"buttons-border-color\";s:7:\"#ffffff\";s:31:\"buttons-hover-border-color_mode\";s:6:\"accent\";s:26:\"buttons-hover-border-color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:20:\"buttons-s-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"12\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"buttons-s-icon-size\";i:12;s:17:\"buttons-s_padding\";s:17:\"8px 14px 7px 14px\";s:23:\"buttons-s_border_radius\";s:3:\"1px\";s:22:\"buttons-s_border_width\";s:3:\"0px\";s:20:\"buttons-m-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"buttons-m-icon-size\";i:14;s:17:\"buttons-m_padding\";s:19:\"12px 18px 12px 18px\";s:23:\"buttons-m_border_radius\";s:3:\"1px\";s:22:\"buttons-m_border_width\";s:3:\"0px\";s:20:\"buttons-l-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"18\";s:14:\"text_transform\";s:4:\"none\";}s:19:\"buttons-l-icon-size\";i:18;s:17:\"buttons-l_padding\";s:19:\"16px 24px 16px 24px\";s:23:\"buttons-l_border_radius\";s:3:\"1px\";s:22:\"buttons-l_border_width\";s:3:\"0px\";s:12:\"input_height\";s:4:\"40px\";s:11:\"input_color\";s:7:\"#8b8d94\";s:14:\"input_bg_color\";s:19:\"rgba(253,253,253,1)\";s:19:\"input_border_radius\";s:3:\"2px\";s:18:\"input_border_width\";s:15:\"1px 1px 1px 1px\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.11)\";s:13:\"input_padding\";s:17:\"5px 15px 5px 15px\";s:20:\"contact_form_message\";s:1:\"1\";s:13:\"message_color\";s:7:\"#ffffff\";s:16:\"message_bg_color\";s:0:\"\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Plaese try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:33:\"general-contact_form_send_mail_to\";s:0:\"\";s:27:\"contact_form_security_token\";s:20:\"630c5db4bb35fe4059e0\";s:31:\"contact_form_recaptcha_site_key\";s:0:\"\";s:33:\"contact_form_recaptcha_secret_key\";s:0:\"\";s:17:\"image_hover-style\";s:4:\"none\";s:22:\"image_hover-color_mode\";s:6:\"accent\";s:17:\"image_hover-color\";s:20:\"rgba(12,162,224,0.2)\";s:26:\"image_hover-color_gradient\";s:56:\"135deg|rgba(46,221,237,0.2) 30%|rgba(0,132,187,0.2) 100%\";s:19:\"image_hover-opacity\";i:20;s:39:\"image_hover-project_rollover_color_mode\";s:6:\"accent\";s:34:\"image_hover-project_rollover_color\";s:16:\"rgba(0,0,0,0.85)\";s:43:\"image_hover-project_rollover_color_gradient\";s:58:\"135deg|rgba(46,221,237,0.85) 30%|rgba(0,132,187,0.85) 100%\";s:36:\"image_hover-project_rollover_opacity\";i:85;s:25:\"social_buttons-visibility\";s:7:\"allways\";s:32:\"social_buttons-post-button_title\";s:15:\"Share this post\";s:19:\"social_buttons-post\";a:0:{}s:42:\"social_buttons-portfolio_post-button_title\";s:15:\"Share this post\";s:29:\"social_buttons-portfolio_post\";a:0:{}s:33:\"social_buttons-photo-button_title\";s:16:\"Share this image\";s:20:\"social_buttons-photo\";a:0:{}s:32:\"social_buttons-page-button_title\";s:15:\"Share this page\";s:19:\"social_buttons-page\";a:0:{}s:11:\"widgetareas\";a:2:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}}s:27:\"general-page_content_margin\";s:9:\"70px 70px\";s:18:\"general-responsive\";s:1:\"1\";s:29:\"general-side_content_paddings\";s:4:\"50px\";s:31:\"general-switch_content_paddings\";s:5:\"778px\";s:36:\"general-mobile_side_content_paddings\";s:4:\"20px\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:21:\"general-smooth_scroll\";s:3:\"off\";s:25:\"advanced-speed_img_resize\";s:1:\"1\";s:35:\"advanced-normalize_resize_on_mobile\";s:1:\"1\";s:19:\"the7_opengraph_tags\";s:1:\"1\";s:18:\"general-custom_css\";s:146:\".sub-nav .menu-item i.fa,\n.sub-nav .menu-item i.fas,\n.sub-nav .menu-item i.far,\n.sub-nav .menu-item i.fab {\n	text-align: center;\n	width: 1.25em;\n}\";s:21:\"general-tracking_code\";b:0;s:33:\"show_static_part_of_archive_title\";s:1:\"1\";s:23:\"template_page_id_author\";i:0;s:36:\"template_page_id_author_full_content\";s:1:\"0\";s:21:\"template_page_id_date\";i:0;s:34:\"template_page_id_date_full_content\";s:1:\"0\";s:30:\"template_page_id_blog_category\";i:0;s:43:\"template_page_id_blog_category_full_content\";s:1:\"0\";s:26:\"template_page_id_blog_tags\";i:0;s:39:\"template_page_id_blog_tags_full_content\";s:1:\"0\";s:23:\"template_page_id_search\";i:0;s:36:\"template_page_id_search_full_content\";s:1:\"0\";s:20:\"template_page_id_404\";i:0;}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(170, 'the7_plugins_last_check', '1617623660', 'no'),
(171, 'recently_activated', 'a:0:{}', 'yes'),
(176, 'theme_mods_consulting', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:23:\"consulting-primary_menu\";i:111;}s:18:\"custom_css_post_id\";i:6926;}', 'yes'),
(177, 'envato_market_version', '1.0.0-RC2', 'yes'),
(178, 'stm_css_transition', 'yes', 'yes'),
(181, 'envato_market_state', 'install', 'yes'),
(182, 'stm_custom_style', '117626', 'yes'),
(187, 'revslider_servers', 'a:3:{i:0;s:22:\"themepunch-ext-c.tools\";i:1;s:22:\"themepunch-ext-a.tools\";i:2;s:22:\"themepunch-ext-b.tools\";}', 'yes'),
(188, 'revslider_server_refresh', '1712133734', 'yes'),
(189, 'revslider-update-check-short', '1712718295', 'yes'),
(190, 'revslider-connection', '1', 'yes'),
(191, 'revslider-update-hash', 'b3b73d9050634df76496dbbcfcb748c9', 'yes'),
(192, 'revslider-latest-version', '6.7.1', 'yes'),
(193, 'revslider-stable-version', '4.2.0', 'yes'),
(194, 'revslider-notices', 'a:1:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:964:\"<div style=\"display: block; background: #1b0e41;text-align: center; height:300px;\"><noscript><img src=\"//updates.themepunch-ext-c.tools//banners/rs60/cyberweek.jpg\" usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\"></noscript><img usemap=\"#srbannermap\" style=\"min-width:920px;height:300px;display: inline-block;\" src=\"//updates.themepunch-ext-c.tools//banners/rs60/cyberweek.jpg\"></div>\n<map name=\"srbannermap\">\n    <area target=\"_blank\" alt=\"Slider Revolution\" title=\"Slider Revolution\" href=\"https://www.sliderrevolution.com/black-friday-and-cyber-monday-sale/?utm_source=admin&amp;utm_medium=banner&amp;utm_campaign=srusers&amp;utm_content=cyberweeks22\" coords=\"569,135,890,196\" shape=\"rect\">\n    <area target=\"_blank\" alt=\"Essential Grid\" title=\"Essential Grid\" href=\"https://www.essential-grid.com/?utm_source=admin&utm_medium=banner&utm_campaign=esgusers&utm_content=cyberweeks22\" coords=\"570,200,889,260\" shape=\"rect\">\n</map>\";s:4:\"code\";s:9:\"TPSRCW111\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}', 'yes'),
(195, 'revslider-additions', 'O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}', 'yes'),
(196, 'rs-addons-counter', '30', 'yes'),
(197, 'revslider-addons', 'O:8:\"stdClass\":30:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"352\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2021-03-17\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"351\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-01-20\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"350\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:6:\"2.0.10\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2020-10-30\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"354\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"307\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2020-10-15\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"75\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2020-05-05\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"309\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2020-12-19\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"77\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2020-06-14\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"311\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2020-05-05\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"64\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-01-05\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"58\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2020-12-15\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"312\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.2.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"70\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2020-10-07\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"310\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"353\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"57\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2020-02-20\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"308\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-c.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-01-15\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"61\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2022-02-19\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"73\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2023-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"59\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"54\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2022-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2023-08-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"65\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"66\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"69\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"71\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-c.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}', 'yes'),
(198, 'revslider-library-check', '1712193313', 'yes'),
(199, 'revslider-library-hash', 'dae3de1eb57eeeee008b70e9a23844b5', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(200, 'rs-library', 'a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(201, 'revslider-templates-check', '1712648376', 'yes'),
(202, 'revslider-templates-hash', '974a80fe36a4409de4f3b17f90f3b6ff', 'yes'),
(203, 'rs-templates-new', '', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(204, 'rs-templates', 'a:3:{s:4:\"hash\";s:32:\"b41828ffe0545d93ce583ebafc921cf6\";s:6:\"slider\";a:715:{i:0;a:24:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/carousel-slider-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=carousel-slider-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:24:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-slideshow-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:24:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-tabs-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:25:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-facebook-feed/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-facebook-feed\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:24:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:165:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-one-page-slider-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:24:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-flickr-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-flickr-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:25:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:153:\"http://revolution.themepunch.com/one-page-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=one-page-wordpress-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:24:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-swipe-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-swipe-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:24:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:24:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-hero-image/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-image\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:25:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-instagram-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-instagram-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:25:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/wordpress-front-page-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-front-page-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:25:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:127:\"http://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:25:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-media-gallery-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:25:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-media-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-media-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:25:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:25:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-news-rotator/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-rotator\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:25:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:25:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:25:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-content-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-blocks\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:25:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-newsletter-signup/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-newsletter-signup\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:25:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-fullscreen-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:25:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-photography-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photography-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:25:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-photo-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:25:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/wordpress-search-form-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-search-form-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:25:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:159:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-cover-flow-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:25:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-image-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:25:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:149:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-vimeo-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:25:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-hero-vimeo/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-vimeo\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:25:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/wordpress-frontpage-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-frontpage-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:25:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-header-image/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-header-image\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:25:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/hero-image-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-image-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:25:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/wordpress-cover-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-cover-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:25:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:153:\"http://revolution.themepunch.com/wordpress-youtube-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-youtube-gallery\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:26:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:151:\"http://revolution.themepunch.com/wordpress-youtube-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-youtube-header\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:25:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=big-bold-fullscreen-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:25:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:141:\"http://revolution.themepunch.com/content-zoom-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=content-zoom-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:25:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/food-carousel-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-carousel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:25:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:135:\"http://revolution.themepunch.com/travel-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:25:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:25:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-sidebar-slideshow\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:25:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/wordpress-touch-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-touch-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:25:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-3d-parallax/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-3d-parallax\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:25:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/responsive-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=responsive-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:25:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/wordpress-3d-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-3d-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:25:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:25:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:139:\"http://revolution.themepunch.com/woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:25:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/restaurant-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=restaurant-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:25:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:155:\"http://revolution.themepunch.com/agency-website-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=agency-website-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:25:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:183:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=thumbnail-hover-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:25:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:201:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=thumbnail-hover-carousel-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:26:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:223:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-4k-youtube-video-gallery-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:54;a:25:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/fullscreen-hero-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fullscreen-hero-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:25:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:193:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coming-soon-wordpress-under-construction-site\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:25:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:143:\"http://revolution.themepunch.com/christmas-snow-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-snow-scene\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:25:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:195:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rock-band-music-theme-slider-revolution-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:25:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:175:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-free-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:25:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/app-landing-page-free-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-landing-page-free-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:25:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:133:\"http://revolution.themepunch.com/hero-desk-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-desk-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:25:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-news-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:25:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:25:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:163:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-photo-gallery-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:25:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:145:\"http://revolution.themepunch.com/wordpress-news-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:25:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:189:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=interactive-whiteboard-animation-free-addon\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:25:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider-plugin-2016\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:28:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:28:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:28:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:28:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:28:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:28:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:28:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:28:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:28:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:28:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:28:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:28:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:28:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:28:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:28:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:28:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:25:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:25:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/car-dealership-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=car-dealership-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:25:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-fullscreen-menu\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:25:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/best-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:95;a:25:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:169:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-effect-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:25:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/wordpress-header-image-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-header-image-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:28:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:28:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:28:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:28:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:28:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:25:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/wordpress-theme-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:25:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/wordpress-magazine-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-magazine-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:25:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/wordpress-news-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-news-header\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:28:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/minimal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:107;a:28:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=dark-wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:28:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/wordpress-parallax-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-parallax-theme\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:25:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/wordpress-typewriter-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-typewriter-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:25:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/blend-mode-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=blend-mode-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:28:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:28:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:28:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:28:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:28:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:28:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:28:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:28:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:28:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:28:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:28:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:28:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:28:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:28:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:28:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:28:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:28:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:28:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:28:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:28:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:25:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/80s-style-intro/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=80s-style-intro\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:25:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/blur-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=blur-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:24:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/coming-soon-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coming-soon-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:28:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nice-clean-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:24:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/snow-effect-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=snow-effect-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:25:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/particle-effect-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-effect-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Increase Engagement with Particle Effects and Blend Mode [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-increase-engagement-with-particle-effects-and-blend-mode/\";s:9:\"guide_img\";s:32:\"tutorial/particle-effect-one.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:24:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/particle-effect-intro/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-effect-intro\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:25:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/particle-background-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-background-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:25:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-portfolio-plugin\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:24:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-showcase-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:24:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=best-wordpress-slider-plugin-2017\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Create an Exciting Action Shot for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-exciting-action-shot-for-your-hero-image/\";s:9:\"guide_img\";s:26:\"tutorial/gravitydesign.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:24:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/404-error-page-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-error-page-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:24:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/wordpress-carousel-gallery/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-carousel-gallery\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:24:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:129:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ ?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content= \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:24:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/space-opera-presentation/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=space-opera-presentation\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:24:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/website-intro-wordpress-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=website-intro-wordpress-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Slider Animation Effect Your Visitors Won’t Forget [Tutorial]\";s:9:\"guide_url\";s:83:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-slider-animation-effect/\";s:9:\"guide_img\";s:25:\"tutorial/websiteintro.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:24:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/minimal-mask-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-mask-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:24:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:178:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-zoom-slices-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:24:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-double-exposure-effect\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:24:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=mountain-wordpress-parallax-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:62:\"How to Place Text Behind Objects in Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:69:\"https://www.sliderrevolution.com/tutorials/place-text-behind-objects/\";s:9:\"guide_img\";s:35:\"tutorial/mountainparallaxheader.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:28:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:28:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:28:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:28:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:28:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:28:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:28:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:28:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:28:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:28:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:28:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:28:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:28:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:28:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:28:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:190:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=goodnews-responsive-wordpress-theme-content\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:25:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/before-after-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=before-after-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:24:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-product-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:25:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/overexposure-transition-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=overexposure-transition-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:24:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:134:\"https://revolution.themepunch.com/parallax-scroll/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-scroll\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:28:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:28:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:28:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:28:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:28:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:28:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:28:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:28:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:28:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=techco-one-page-wordpress-theme\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:24:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-live-weather-add-on\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:167:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:24:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=360-degree-real-estate-virtual-tour\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:24:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-duotone-effect-add-on\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:24:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:166:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-content-reveal-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:28:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:28:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:28:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:28:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:28:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:28:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:28:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:182:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=immersion-wordpress-one-page-theme-2018\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:25:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:174:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=funky-intro-slider-wordpress-plugin\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:28:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:28:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:28:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:28:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:28:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:28:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:28:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:28:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-minimal-magazine-wordpress-template\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:28:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:28:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:28:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:28:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:28:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:28:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-view-single-post-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:24:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clean-landing-page-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:24:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=clear-cut-portfolio-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:28:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:28:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:28:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:28:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:28:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:28:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:189:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:24:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:184:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=bubble-morph-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:24:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:180:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=distortion-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:24:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:196:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=club-flyer-landing-page-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:25:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:180:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=paintbrush-effect-add-on-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:87:\"How to Add a Unique Paintbrush Effect to Your Website with Slider Revolution [Tutorial]\";s:9:\"guide_url\";s:68:\"https://www.sliderrevolution.com/tutorials/unique-paintbrush-effect/\";s:9:\"guide_img\";s:28:\"tutorial/paintbrushaddon.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:236;a:28:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:28:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:28:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:28:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=parallax-one-page-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:28:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:28:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:28:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:28:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:28:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:28:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:28:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=le-chef-restaurant-website-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:25:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=news-magazine-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:248;a:24:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:24:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:184:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-shop-header-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:24:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:194:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=seasonal-offer-christmas-header-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:28:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:28:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:28:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:28:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:28:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:28:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:28:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:28:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:28:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=barber-shop-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:24:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fitness-club-header-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:24:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=soccer-club-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:24:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/music-band-template-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=music-band-template-for-wordpress\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:24:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:176:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=restaurant-menu-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a Digital Menu Teaser for Your Foodie Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-menu-teaser-for-your-foodie-website/\";s:9:\"guide_img\";s:28:\"tutorial/restaurant-menu.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:24:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/cinematic-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:24:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=3d-parallax-cubes-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:28:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:28:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:28:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:28:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:28:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:28:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:28:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:28:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:28:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:28:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:28:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:170:\"https://revolution.themepunch.com/medicare-medical-services-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=medicare-medical-services-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:28:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:28:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:28:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:28:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:28:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:28:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:28:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:28:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:186:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-joint-coffee-shop-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:286;a:29:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:287;a:28:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:28:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:28:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:28:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:28:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:28:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:28:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:28:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:28:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:168:\"https://revolution.themepunch.com/angled-business-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=angled-business-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:24:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:157:\"http://revolution.themepunch.com/retouch-before-after-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=retouch-before-after-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:24:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:161:\"http://revolution.themepunch.com/tech-showcase-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tech-showcase-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:28:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:28:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:28:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:28:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:28:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/peak-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=peak-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:304;a:28:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:28:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:28:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:28:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:28:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:28:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:28:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:29:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:312;a:28:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:28:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/app-studio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=app-studio-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:24:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/cube-animation-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cube-animation-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:28:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:29:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:317;a:28:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:28:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:28:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:28:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:28:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:28:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:28:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:28:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/basic-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=basic-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:24:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:147:\"http://revolution.themepunch.com/nature-explorer-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=nature-explorer-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Design a Featured Post Slider That Impresses Readers [Tutorial]\";s:9:\"guide_url\";s:64:\"https://www.sliderrevolution.com/tutorials/featured-post-slider/\";s:9:\"guide_img\";s:26:\"tutorial/nature-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:24:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/art-gallery-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=art-gallery-slider-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"Promote Your Most Recent Content with a Colorful Hero Design [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/promote-your-most-recent-content-with-a-colorful-hero-design/\";s:9:\"guide_img\";s:31:\"tutorial/Art-Gallery-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:28:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:28:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:28:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:28:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:28:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:28:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:11:\"zindex=\"10\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:28:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/construction-company-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=construction-company-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:25:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:164:\"https://revolution.themepunch.com/classic-cars-before-after-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=classic-cars-before-after-hero\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create an Interactive Before-and-After Image Slider [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-interactive-before-and-after-image-slider/\";s:9:\"guide_img\";s:35:\"tutorial/Classic-Cars-Evolution.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:335;a:24:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:132:\"https://revolution.themepunch.com/404-error-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-error-page\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create a 404 Page That Will Convert Instead of Cost You Visitors [Tutorial]\";s:9:\"guide_url\";s:68:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-404-page/\";s:9:\"guide_img\";s:34:\"tutorial/404-Error-Space-Theme.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:28:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:28:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:28:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:28:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:28:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:28:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:28:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:28:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:28:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:28:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/landing-page-builder/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=landing-page-builder\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:27:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:27:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:27:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:27:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:27:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:27:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:27:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:27:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:27:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:27:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:27:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:27:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:27:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:27:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:27:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:27:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:27:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:27:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:27:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:27:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:156:\"https://revolution.themepunch.com/corporate-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:367;a:27:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:27:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:27:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:27:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:27:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:27:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:27:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:27:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:27:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:27:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:27:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:27:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:27:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:27:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:27:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:27:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:27:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:27:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:160:\"https://revolution.themepunch.com/church-website-template-dark/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-dark\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:27:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:27:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:27:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:27:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:27:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:27:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:27:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:27:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:27:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:27:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/church-website-template-light/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=church-website-template-light\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:27:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:27:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:27:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:27:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:27:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:27:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:27:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:27:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:27:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:27:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:27:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:154:\"https://revolution.themepunch.com/rockable-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=rockable-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:24:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"real-estate-showcase-slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/real-estate-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-showcase-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:24:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:136:\"https://revolution.themepunch.com/isometric-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=isometric-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:27:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:27:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:27:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:24:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/woo-commerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woo-commerce-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:27:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:27:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:27:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:27:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:27:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:27:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:27:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:27:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:27:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:27:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:27:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:27:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:27:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:27:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:148:\"https://revolution.themepunch.com/event-florist-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-florist-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:24:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:24:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:24:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:24:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:24:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:145:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:24:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/wordpress-hero-image-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-hero-image-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:24:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/launching-soon-countdown/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=launching-soon-countdown\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:24:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:140:\"https://revolution.themepunch.com/under-construction/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=under-construction\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:88:\"Create an Under Construction Page That’ll Entertain Visitors While You Work [Tutorial]\";s:9:\"guide_url\";s:121:\"https://www.sliderrevolution.com/tutorials/create-an-under-construction-page-that-will-entertain-visitors-while-you-work/\";s:9:\"guide_img\";s:31:\"tutorial/Under-Construction.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:24:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:142:\"https://revolution.themepunch.com/snow-particle-scene/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=snow-particle-scene\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:24:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:146:\"https://revolution.themepunch.com/cyber-particle-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-particle-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create a Retro-Inspired Design for the Hero Section [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-retro-inspired-design-for-the-hero-section/\";s:9:\"guide_img\";s:30:\"tutorial/Particle-Effect-2.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:27:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:27:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:27:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:27:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:27:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:27:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:442;a:27:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:27:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:27:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:27:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:162:\"https://revolution.themepunch.com/stark-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=stark-agency-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:24:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:158:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=big-summer-sale-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Add an Animated Headline to Your Home Page [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-add-an-animated-headline-to-your-home-page-tutorial/\";s:9:\"guide_img\";s:28:\"tutorial/big-summer-sale.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:25:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:144:\"https://revolution.themepunch.com/travel-blog-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-blog-carousel\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create an Engaging Product Carousel for Your Online Shop [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-engaging-product-carousel-for-your-online-shop/\";s:9:\"guide_img\";s:31:\"tutorial/traveller-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:448;a:24:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:136:\"https://revolution.themepunch.com/project-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=project-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:24:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:130:\"https://revolution.themepunch.com/news-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=news-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:27:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:27:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:27:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:27:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:27:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:27:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:27:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:27:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:27:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:27:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/story-blocks/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=story-blocks\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:24:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:137:\"https://www.sliderrevolution.com/templates/mini-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=mini-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:25:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:149:\"https://www.sliderrevolution.com/templates/food-delivery-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-delivery-hero\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:462;a:24:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=slider-with-illustrations\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:27:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:28:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:465;a:27:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:27:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:27:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:27:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:27:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:27:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:27:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:27:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/zen-technology-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=zen-technology-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:24:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=paintbrush-effect-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:482;a:24:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=black-friday-scroll-video\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:369:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"Spice Up Your Sales Promotions with a Video Scroll Animation [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/spice-up-your-sales-promotions-with-a-video-scroll-animation/\";s:9:\"guide_img\";s:38:\"tutorial/black-friday-scroll-video.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:27:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:484;a:27:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:27:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:86:\" offset=\"t:90px,80px,70px,70px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:27:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:27:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:27:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:27:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:27:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:27:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:27:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:27:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:27:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charity-non-profit-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:24:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:155:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-hero-titles\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image/\";s:9:\"guide_url\";s:70:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image/\";s:9:\"guide_img\";s:34:\"tutorial/cinematic-hero-titles.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:24:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=design-dna-scroll-video\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:543:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:24:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-delivery-lottie-scroll\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template is a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Design a Scroll Animation on Your Own Using Lottie [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-scroll-animation-on-your-own-using-lottie-tutorial/\";s:9:\"guide_img\";s:40:\"tutorial/food-delivery-lottie-scroll.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:27:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:499;a:27:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:27:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-recipe-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:27:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:176:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:502;a:28:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:503;a:27:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:128:\"https://revolution.themepunch.com/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=revolution.themepunch.com\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:27:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:505;a:27:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:506;a:27:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:168:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:91:\"How to Create a Featured Content Section That Convinces Visitors to Keep Reading [Tutorial]\";s:9:\"guide_url\";s:124:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-featured-content-section-that-convinces-visitors-to-keep-reading/\";s:9:\"guide_img\";s:41:\"tutorial/Cyber-Carousel-With-Lightbox.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:27:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:508;a:27:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:509;a:27:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:27:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:27:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:27:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:155:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:24:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:162:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Draw Attention to Your eCommerce Products with a Liquid Effect [Tutorial]\";s:9:\"guide_url\";s:92:\"https://www.sliderrevolution.com/tutorials/how-to-draw-attention-to-your-ecommerce-products/\";s:9:\"guide_img\";s:30:\"tutorial/woo-liquid-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:514;a:24:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:162:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Draw Attention to Your eCommerce Products with a Liquid Effect [Tutorial]\";s:9:\"guide_url\";s:92:\"https://www.sliderrevolution.com/tutorials/how-to-draw-attention-to-your-ecommerce-products/\";s:9:\"guide_img\";s:30:\"tutorial/woo-liquid-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:515;a:27:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:516;a:27:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woocommerce-slider-pack\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:517;a:24:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/creative-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create an Engaging Hero Section Without Any Photos or Videos [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-engaging-hero-section-without-any-photos-or-videos/\";s:9:\"guide_img\";s:37:\"tutorial/Creative-Hero-Collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:24:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=photographer-and-videographer-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Customized Transition Effect for Your Hero Section [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-customized-transition-effect-for-your-hero-section/\";s:9:\"guide_img\";s:32:\"tutorial/photographer-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:519;a:24:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=real-estate-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Stunning Hero Slider for Your Real Estate Website [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-stunning-hero-slider-for-your-real-estate-website/\";s:9:\"guide_img\";s:30:\"tutorial/realestate-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:520;a:24:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/saas-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=saas-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:28:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:522;a:28:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:523;a:28:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cinematic-wildlife-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Beautiful Content Showcase for an Online Publication [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-content-showcase-for-an-online-publication/\";s:9:\"guide_img\";s:31:\"tutorial/Cinematic-Wildlife.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:524;a:25:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=charts-addon-presentation-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Digital Report Teaser with Slider Revolution [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-report-teaser-with-slider-revolution/\";s:9:\"guide_img\";s:45:\"tutorial/gaming-stats-presentation-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:525;a:25:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=coffee-shop-split-screen-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:526;a:24:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-showreel-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Add a Beautiful Video Background to Your Website [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-beautiful-video-background-to-your-website-tutorial/\";s:9:\"guide_img\";s:28:\"tutorial/showreel-slider.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:527;a:25:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-art-forms-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:528;a:24:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=background-effect-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:703:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Unique Gradient Background Design [Tutorial]\";s:9:\"guide_url\";s:63:\"https://www.sliderrevolution.com/tutorials/gradient-background/\";s:9:\"guide_img\";s:27:\"tutorial/bg-effect-hero.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:529;a:24:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=cyber-glitch-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:361:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:72:\"How to Create a Futuristic-looking Website for a Tech Company [Tutorial]\";s:9:\"guide_url\";s:105:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-futuristic-looking-website-for-a-tech-company/\";s:9:\"guide_img\";s:22:\"tutorial/cyberfunk.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:530;a:25:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=motion-blur-portfolio-showcase\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu its ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"A Different Way to Wow Shoppers with an eCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/a-different-way-to-wow-shoppers-with-an-ecommerce-product-slider/\";s:9:\"guide_img\";s:34:\"tutorial/motion-blur-portfolio.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:531;a:25:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=portal-effect-hero-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:67:\"Demystifying the Slider Revolution Builder and Templates [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/demystifying-the-slider-revolution-builder-and-templates-tutorial/\";s:9:\"guide_img\";s:31:\"tutorial/portal-effect-hero.jpg\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:532;a:24:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=winery-timeline-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Create a Vertical Slider Timeline That Tells Your Brand Story [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-vertical-slider-timeline-that-tells-your-brand-story/\";s:9:\"guide_img\";s:28:\"tutorial/winery-timeline.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:533;a:27:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:534;a:27:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:535;a:27:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:536;a:27:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:537;a:28:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:538;a:27:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:539;a:27:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:540;a:27:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:541;a:27:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:542;a:28:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:543;a:28:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:544;a:27:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v1\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:545;a:27:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:546;a:27:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:547;a:27:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:548;a:27:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:549;a:27:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:550;a:27:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:551;a:27:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:552;a:27:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:553;a:27:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:554;a:27:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:555;a:27:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:556;a:27:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:557;a:27:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:558;a:27:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:559;a:27:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:560;a:27:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:561;a:27:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:562;a:27:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:207:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=smart-living-one-page-template-for-wordpress-v3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:563;a:24:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/urban-street-skate-slider-for-wordpress/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=urban-street-skate-slider-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:73:\"How to Create a Modern Slider Design for Your Medical Practice [Tutorial]\";s:9:\"guide_url\";s:106:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-modern-slider-design-for-your-medical-practice/\";s:9:\"guide_img\";s:38:\"tutorial/urban-street-skate-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:564;a:24:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fast-food-burger-restaurant-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Creatively Display Ingredients and Nutrition Info on Your Website [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/how-to-creatively-display-ingredients-and-nutrition-info-on-your-website/\";s:9:\"guide_img\";s:26:\"tutorial/yummy-burgers.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:565;a:27:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:566;a:27:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:567;a:27:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:568;a:27:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:569;a:27:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:570;a:27:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:571;a:27:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=tattoo-event-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Dark Website Design with a Surprising Color Reveal [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-dark-website-design-with-a-surprising-color-reveal/\";s:9:\"guide_img\";s:33:\"tutorial/Tattoo-Event-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:572;a:27:{s:2:\"id\";s:3:\"608\";s:5:\"title\";s:24:\"Startup Website Template\";s:5:\"alias\";s:24:\"startup-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"startup-website-template\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:29:34\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:573;a:27:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:574;a:27:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:575;a:27:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:576;a:27:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:577;a:27:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:578;a:27:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:579;a:27:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:580;a:27:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:581;a:27:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:582;a:27:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/startup-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=startup-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"A Fun Way to Design the CTA Section with Two Buttons [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/a-fun-way-to-design-the-cta-section-with-two-buttons/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:583;a:27:{s:2:\"id\";s:3:\"619\";s:5:\"title\";s:32:\"Christmas Gift Card Landing Page\";s:5:\"alias\";s:32:\"christmas-gift-card-landing-page\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"christmas-gift-card-landing-page\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:515:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:05:33\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:584;a:27:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:515:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:585;a:27:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=christmas-gift-card-landing-page\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:341:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:586;a:28:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:25:\"Minimal Portfolio Website\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-website\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:172:\"https://revolution.themepunch.com/minimal-portfolio-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-portfolio-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:587;a:24:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/newborn-image-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=newborn-image-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:588;a:24:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=delicious-full-width-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Visually Promote Products and Their Unique Scent Profiles Online [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-visually-promote-products-and-their-unique-scent-profiles-online/\";s:9:\"guide_img\";s:30:\"tutorial/full-width-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:589;a:27:{s:2:\"id\";s:3:\"624\";s:5:\"title\";s:20:\"App Website Template\";s:5:\"alias\";s:20:\"app-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"app-website-template\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:22:53\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:590;a:27:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:591;a:27:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:592;a:27:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:593;a:27:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:594;a:27:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:595;a:27:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:596;a:27:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:597;a:27:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:598;a:27:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:599;a:27:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:600;a:27:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:601;a:27:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spaceman-app-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Creative Way to Design the Hero Image for Your Mobile App Landing Page [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-design-the-hero-image-for-your-mobile-app-landing-page/\";s:9:\"guide_img\";s:33:\"tutorial/App-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:602;a:27:{s:2:\"id\";s:3:\"637\";s:5:\"title\";s:25:\"Testimonial Carousel Pack\";s:5:\"alias\";s:25:\"testimonial-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"testimonial-carousel-pack\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:38:17\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:603;a:27:{s:2:\"id\";s:3:\"638\";s:5:\"title\";s:22:\"Testimonial Carousel 1\";s:5:\"alias\";s:22:\"testimonial-carousel-1\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-1.zip\";s:3:\"uid\";s:32:\"1cc1f92edb4edd47f880c0b4f77e343d\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:41:02\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:604;a:27:{s:2:\"id\";s:3:\"639\";s:5:\"title\";s:22:\"Testimonial Carousel 2\";s:5:\"alias\";s:22:\"testimonial-carousel-2\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-2.zip\";s:3:\"uid\";s:32:\"b6ad1675b8d14c0ccc63ffc01b221aac\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:43:25\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:605;a:27:{s:2:\"id\";s:3:\"640\";s:5:\"title\";s:22:\"Testimonial Carousel 3\";s:5:\"alias\";s:22:\"testimonial-carousel-3\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-3.zip\";s:3:\"uid\";s:32:\"cb4a72fb40fc400a71754f71b9bb2d6e\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:46:01\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:606;a:27:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:22:\"Testimonial Carousel 4\";s:5:\"alias\";s:22:\"testimonial-carousel-4\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-4.zip\";s:3:\"uid\";s:32:\"bfca98d6b4042b38df044e9e2a6ca983\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:47:57\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:607;a:27:{s:2:\"id\";s:3:\"642\";s:5:\"title\";s:22:\"Testimonial Carousel 5\";s:5:\"alias\";s:22:\"testimonial-carousel-5\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-5.zip\";s:3:\"uid\";s:32:\"4a9b9c72b51628e1343adde9bff3915f\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=testimonial-carousel-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:49:27\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Give Your Testimonials Section the Attention It Deserves [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-give-your-testimonials-section-the-attention-it-deserves/\";s:9:\"guide_img\";s:38:\"tutorial/testimonial-carousel-pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:608;a:24:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:28:\"Deep Dive Ocean Water Effect\";s:5:\"alias\";s:9:\"deep-dive\";s:3:\"zip\";s:13:\"deep-dive.zip\";s:3:\"uid\";s:32:\"5cc0599857b0108fe4e76adc7fbf9a16\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/deep-dive-ocean-water-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=deep-dive-ocean-water-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\r\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:23:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"How to Create a Digital Underwater Scene for Your Water Sports Website [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-digital-underwater-scene-for-your-water-sports-website/\";s:9:\"guide_img\";s:41:\"tutorial/Deep-Dive-Ocean-Water-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:609;a:25:{s:2:\"id\";s:3:\"644\";s:5:\"title\";s:22:\"Particle Wave Showcase\";s:5:\"alias\";s:22:\"particle-wave-showcase\";s:3:\"zip\";s:26:\"particle-wave-showcase.zip\";s:3:\"uid\";s:32:\"1c9ac477fd636078d1812d8d98060899\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/particle-wave-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=particle-wave-showcase\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:307:\"<span class=\"ttm_content\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:30:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Design a Hero Image That Feels Alive and Three-Dimensional [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-hero-image-that-feels-alive-and-three-dimensional/\";s:9:\"guide_img\";s:35:\"tutorial/particle-wave-showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:610;a:24:{s:2:\"id\";s:3:\"645\";s:5:\"title\";s:17:\"Video Hero Header\";s:5:\"alias\";s:17:\"video-hero-header\";s:3:\"zip\";s:21:\"video-hero-header.zip\";s:3:\"uid\";s:32:\"f6a715d4b10e0746f7eb5100836ba1ab\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";s:7:\"preview\";s:147:\"https://www.sliderrevolution.com/templates/video-hero-header/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=video-hero-header\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\r\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:33:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Trippy Hero Image Backdrop with Particle Animation [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-trippy-hero-image-backdrop-with-particle-animation/\";s:9:\"guide_img\";s:30:\"tutorial/video-hero-header.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:611;a:24:{s:2:\"id\";s:3:\"646\";s:5:\"title\";s:28:\"Solar System Showcase Slider\";s:5:\"alias\";s:28:\"solar-system-showcase-slider\";s:3:\"zip\";s:32:\"solar-system-showcase-slider.zip\";s:3:\"uid\";s:32:\"40f7b26ea7f8228d40e8e9cf0f34b5e8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/solar-system-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=solar-system-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. </span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:366:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:50:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:612;a:24:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:26:\"Optic Shop Showcase Slider\";s:5:\"alias\";s:26:\"Optic-shop-showcase-slider\";s:3:\"zip\";s:30:\"Optic-shop-showcase-slider.zip\";s:3:\"uid\";s:32:\"01509228c996ad45c2179d03654f499b\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/optic-shop-showcase-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=optic-shop-showcase-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-02-16 16:41:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Create an Awesome Product Slider with a Built-in Variant Switcher [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-awesome-product-slider-with-a-built-in-variant-switcher/\";s:9:\"guide_img\";s:39:\"tutorial/Optic-shop-showcase-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:613;a:24:{s:2:\"id\";s:3:\"648\";s:5:\"title\";s:27:\"WordPress Charts And Graphs\";s:5:\"alias\";s:24:\"charts-template-showcase\";s:3:\"zip\";s:28:\"charts-template-showcase.zip\";s:3:\"uid\";s:32:\"4ae2fe61830f96c6c5b316368c1ad2c6\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/wordpress-charts-and-graphs/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-charts-and-graphs\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:347:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-03 15:55:16\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Create Interactive Charts and Graphs for WordPress [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-create-interactive-charts-and-graphs-for-wordpress/\";s:9:\"guide_img\";s:37:\"tutorial/charts-template-showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:614;a:27:{s:2:\"id\";s:3:\"649\";s:5:\"title\";s:31:\"Fashion Website Slider Template\";s:5:\"alias\";s:31:\"fashion-website-slider-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"fashion-website-slider-template\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:00:36\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:615;a:27:{s:2:\"id\";s:3:\"650\";s:5:\"title\";s:22:\"Fashion Website Slider\";s:5:\"alias\";s:22:\"fashion-website-slider\";s:3:\"zip\";s:32:\"packs/fashion-website-slider.zip\";s:3:\"uid\";s:32:\"8fb8379f47346173fa0dd402dda37360\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:04:56\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:616;a:27:{s:2:\"id\";s:3:\"651\";s:5:\"title\";s:28:\"Fashion Website Slider Modal\";s:5:\"alias\";s:28:\"fashion-website-slider-modal\";s:3:\"zip\";s:38:\"packs/fashion-website-slider-modal.zip\";s:3:\"uid\";s:32:\"788f34043b6a5fcbfa5fc1c3322fb502\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/fashion-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:08:21\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Summary Slider for Blog Posts, Articles, and More [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-summary-slider-for-blog-posts-articles-and-more/\";s:9:\"guide_img\";s:35:\"tutorial/Fashion-Website-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:617;a:24:{s:2:\"id\";s:3:\"652\";s:5:\"title\";s:24:\"Furniture Website Slider\";s:5:\"alias\";s:24:\"furniture-website-slider\";s:3:\"zip\";s:28:\"furniture-website-slider.zip\";s:3:\"uid\";s:32:\"8575493ed5fd1ee2e671e67479fdeccb\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/furniture-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=furniture-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-23 14:05:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Quickly Build a Great-Looking Microsite for Your Product [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-quickly-build-a-great-looking-microsite-for-your-product/\";s:9:\"guide_img\";s:37:\"tutorial/furniture-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:618;a:24:{s:2:\"id\";s:3:\"653\";s:5:\"title\";s:26:\"Fitness Gym Website Slider\";s:5:\"alias\";s:26:\"fitness-gym-website-slider\";s:3:\"zip\";s:30:\"fitness-gym-website-slider.zip\";s:3:\"uid\";s:32:\"86894d98e34a590e80a1d0cd3d7dc819\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/fitness-gym-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fitness-gym-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-04-19 11:02:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Multimedia Slider that Lures in More Clients [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-multimedia-slider-that-lures-in-more-clients/\";s:9:\"guide_img\";s:39:\"tutorial/fitness-gym-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:619;a:27:{s:2:\"id\";s:3:\"654\";s:5:\"title\";s:36:\"Ai & Robotics Webside Slider Package\";s:5:\"alias\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:12:25\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:620;a:28:{s:2:\"id\";s:3:\"655\";s:5:\"title\";s:28:\"Ai & Robotics Website Slider\";s:5:\"alias\";s:30:\"ai-and-robotics-website-slider\";s:3:\"zip\";s:40:\"packs/ai-and-robotics-website-slider.zip\";s:3:\"uid\";s:32:\"e40b7296d1519972029e9744a0c09b29\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:16:48\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:621;a:27:{s:2:\"id\";s:3:\"656\";s:5:\"title\";s:14:\"AI Video Modal\";s:5:\"alias\";s:14:\"ai-video-modal\";s:3:\"zip\";s:24:\"packs/ai-video-modal.zip\";s:3:\"uid\";s:32:\"aab36a599413b7e66dfdda8f517b47b1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-and-robotics-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:20:55\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Create a Sleek Slider Design for Your High-Tech Brand [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-sleek-slider-design-for-your-high-tech-brand/\";s:9:\"guide_img\";s:24:\"tutorial/Ai-Robotics.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:622;a:25:{s:2:\"id\";s:3:\"657\";s:5:\"title\";s:33:\"Minimal Typography Website Slider\";s:5:\"alias\";s:33:\"minimal-typography-website-slider\";s:3:\"zip\";s:37:\"minimal-typography-website-slider.zip\";s:3:\"uid\";s:32:\"43cf63d6541d33b7d4e59350935d73bf\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/minimal-typography-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=minimal-typography-website-slider\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-25 14:39:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"How to Transform the Mood of Your Home Page with Duotones [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/how-to-transform-the-mood-of-your-home-page-with-duotones/\";s:9:\"guide_img\";s:46:\"tutorial/duotone-typography-website-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:623;a:24:{s:2:\"id\";s:3:\"658\";s:5:\"title\";s:19:\"404 Page Collection\";s:5:\"alias\";s:19:\"404-page-collection\";s:3:\"zip\";s:23:\"404-page-collection.zip\";s:3:\"uid\";s:32:\"3f0b25b5e893b170536a498939465a1a\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/404-page-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-page-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:167:\"<span class=\"ttm_content\">Show your lost website visitors a funny and lighthearted message with our 404 page template collection.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-04 11:30:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create an Effective Thank You Page for Your Website [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-effective-thank-you-page-for-your-website/\";s:9:\"guide_img\";s:32:\"tutorial/404-page-collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:624;a:24:{s:2:\"id\";s:3:\"659\";s:5:\"title\";s:24:\"eCommerce Product Slider\";s:5:\"alias\";s:21:\"ecommerce-sale-slider\";s:3:\"zip\";s:25:\"ecommerce-sale-slider.zip\";s:3:\"uid\";s:32:\"49ca4743090cddca705ee108eae967c5\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/ecommerce-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ecommerce-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">So you have an eCommerce shop and are looking for the ultimate sales pitch on your landing page? Trying to convert your precious visitors into more sales? Look no further than our eCommerce Product Slider!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-17 14:22:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:65:\"How to Get More Eyes on Your eCommerce Sales Promotion [Tutorial]\";s:9:\"guide_url\";s:98:\"https://www.sliderrevolution.com/tutorials/how-to-get-more-eyes-on-your-ecommerce-sales-promotion/\";s:9:\"guide_img\";s:34:\"tutorial/ecommerce-sale-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:625;a:24:{s:2:\"id\";s:3:\"660\";s:5:\"title\";s:19:\"Fashion Shop Slider\";s:5:\"alias\";s:19:\"fashion-shop-slider\";s:3:\"zip\";s:23:\"fashion-shop-slider.zip\";s:3:\"uid\";s:32:\"e488e9126dbe4a34c02c89a1115f4ff9\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/fashion-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fashion-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">Customize texts, images, and colors in seconds and have this beast of a shop slider running on your own website in no time.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:24:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:73:\"How to Create a Colorful Retro Effect for the Home Page Slider [Tutorial]\";s:9:\"guide_url\";s:106:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-colorful-retro-effect-for-the-home-page-slider/\";s:9:\"guide_img\";s:32:\"tutorial/fashion-shop-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:626;a:25:{s:2:\"id\";s:3:\"661\";s:5:\"title\";s:29:\"Lingerie Store Website Slider\";s:5:\"alias\";s:29:\"lingerie-store-website-slider\";s:3:\"zip\";s:33:\"lingerie-store-website-slider.zip\";s:3:\"uid\";s:32:\"7bdad27521b7c9b171b618dff2fa0315\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/lingerie-store-website-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=lingerie-store-website-slider\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">This hero slider also includes optional menu navigation and links, in case you want to use it as a standalone landing page.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:28:21\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:627;a:25:{s:2:\"id\";s:3:\"662\";s:5:\"title\";s:28:\"Beach Events Hero Collection\";s:5:\"alias\";s:28:\"beach-events-hero-collection\";s:3:\"zip\";s:32:\"beach-events-hero-collection.zip\";s:3:\"uid\";s:32:\"cf87cd65572e9bc4ee019cceae1c75f8\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide1.jpg\";s:7:\"preview\";s:182:\"https://www.sliderrevolution.com/templates/summer-beach-events-hero-collection?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=summer-beach-events-hero-collection\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">These hero image templates offer a high-octane mix of headlines, images, and special effects.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 16:56:11\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"Sell More Event Tickets with a High-Energy Hero Section [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/sell-more-event-tickets-with-a-high-energy-hero-section/\";s:9:\"guide_img\";s:41:\"tutorial/beach-events-hero-collection.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:628;a:27:{s:2:\"id\";s:3:\"663\";s:5:\"title\";s:41:\"Creative Portfolio Website Slider Package\";s:5:\"alias\";s:41:\"creative-portfolio-website-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"creative-portfolio-website-slider-package\";s:3:\"img\";s:54:\"packages/creative-portfolio-website-slider-package.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:00:43\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:629;a:27:{s:2:\"id\";s:3:\"664\";s:5:\"title\";s:30:\"Creative Portfolio Main Slider\";s:5:\"alias\";s:30:\"creative-portfolio-main-slider\";s:3:\"zip\";s:40:\"packs/creative-portfolio-main-slider.zip\";s:3:\"uid\";s:32:\"2b01de6e46611e4353f1687609aa6783\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:03:03\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:630;a:27:{s:2:\"id\";s:3:\"665\";s:5:\"title\";s:28:\"Creative Portfolio Project 1\";s:5:\"alias\";s:28:\"creative-portfolio-project-1\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-1.zip\";s:3:\"uid\";s:32:\"f1e3a170d3f06d7162445fe9cce99335\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:07:45\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:631;a:27:{s:2:\"id\";s:3:\"666\";s:5:\"title\";s:28:\"Creative Portfolio Project 2\";s:5:\"alias\";s:28:\"creative-portfolio-project-2\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-2.zip\";s:3:\"uid\";s:32:\"59369faef5b4a0571cd5fd72432d2d20\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:12:09\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:632;a:27:{s:2:\"id\";s:3:\"667\";s:5:\"title\";s:28:\"Creative Portfolio Project 3\";s:5:\"alias\";s:28:\"creative-portfolio-project-3\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-3.zip\";s:3:\"uid\";s:32:\"ac6823b9ffeba97c56aa6f4593109e5f\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:14:02\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:633;a:27:{s:2:\"id\";s:3:\"668\";s:5:\"title\";s:28:\"Creative Portfolio Project 4\";s:5:\"alias\";s:28:\"creative-portfolio-project-4\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-4.zip\";s:3:\"uid\";s:32:\"31f5cc4c9d13af7b56adfa7b7c84dce9\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:16:40\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:634;a:27:{s:2:\"id\";s:3:\"669\";s:5:\"title\";s:28:\"Creative Portfolio Project 5\";s:5:\"alias\";s:28:\"creative-portfolio-project-5\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-5.zip\";s:3:\"uid\";s:32:\"23c8e18d556da040ef6ac2382d4a7b94\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:20:22\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:635;a:27:{s:2:\"id\";s:3:\"670\";s:5:\"title\";s:28:\"Creative Portfolio Project 6\";s:5:\"alias\";s:28:\"creative-portfolio-project-6\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-6.zip\";s:3:\"uid\";s:32:\"518434a06d7a959bd3f3e0905e252209\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:21:51\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:636;a:27:{s:2:\"id\";s:3:\"671\";s:5:\"title\";s:28:\"Creative Portfolio Project 7\";s:5:\"alias\";s:28:\"creative-portfolio-project-7\";s:3:\"zip\";s:38:\"packs/creative-portfolio-project-7.zip\";s:3:\"uid\";s:32:\"bb1552746859766efbe319d7c0a1978e\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide1.jpg\";s:7:\"preview\";s:178:\"https://www.sliderrevolution.com/templates/creative-portfolio-website-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=creative-portfolio-website-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.25\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-07-18 17:24:03\";s:7:\"package\";s:41:\"Creative Portfolio Website Slider Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"How to Create a Great-looking Masonry Portfolio for Your Home Page [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-great-looking-masonry-portfolio-for-your-home-page/\";s:9:\"guide_img\";s:39:\"tutorial/Creative-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"58\";s:9:\"installed\";b:0;}i:637;a:25:{s:2:\"id\";s:3:\"672\";s:5:\"title\";s:24:\"AI Particle Cluster Hero\";s:5:\"alias\";s:19:\"ai-particle-cluster\";s:3:\"zip\";s:23:\"ai-particle-cluster.zip\";s:3:\"uid\";s:32:\"e47971fc290d738faca66e100cc7da74\";s:3:\"img\";s:30:\"ai-particle-cluster/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/ai-particle-cluster-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=ai-particle-cluster-hero\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">If you are looking for a stunning, interactive particles animation for your WordPress website, this Slider Revolution template surely is a unique eye-catcher.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:25:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:86:\"Make Visitors Want to Stop and Play with Your Particle Animation Hero Image [Tutorial]\";s:9:\"guide_url\";s:119:\"https://www.sliderrevolution.com/tutorials/make-visitors-want-to-stop-and-play-with-your-particle-animation-hero-image/\";s:9:\"guide_img\";s:32:\"tutorial/ai-particle-cluster.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:638;a:25:{s:2:\"id\";s:3:\"673\";s:5:\"title\";s:24:\"Artistic Parallax Slider\";s:5:\"alias\";s:24:\"artistic-parallax-slider\";s:3:\"zip\";s:28:\"artistic-parallax-slider.zip\";s:3:\"uid\";s:32:\"a1488f5f4d3ffd2912f9520bba2a2418\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/artistic-parallax-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=artistic-parallax-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Gorgeous visuals and clear typography, paired with scroll-based slide navigation, make this WordPress parallax slider template a winner for a wide range of use cases.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:29:34\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:61:\"How to Create a Surreal Design for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:94:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-surreal-design-for-your-hero-image/\";s:9:\"guide_img\";s:37:\"tutorial/artistic-parallax-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:639;a:25:{s:2:\"id\";s:3:\"674\";s:5:\"title\";s:23:\"Magazine Content Slider\";s:5:\"alias\";s:23:\"magazine-content-slider\";s:3:\"zip\";s:27:\"magazine-content-slider.zip\";s:3:\"uid\";s:32:\"6701ec2aab76c253004d6ed5755cf9f6\";s:3:\"img\";s:34:\"magazine-content-slider/slide1.jpg\";s:7:\"preview\";s:158:\"https://www.sliderrevolution.com/templates/magazine-content-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=magazine-content-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:259:\"<span class=\"ttm_content\">This WordPress content slider can display any static content or your WordPress posts. Like any element in this featured slider template, the optional menu can easily be removed if its not needed.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:32:38\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Promote Your Top Content with a Magazine-style Slider [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-top-content-with-a-magazine-style-slider/\";s:9:\"guide_img\";s:36:\"tutorial/Magazine-Content-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:640;a:25:{s:2:\"id\";s:3:\"675\";s:5:\"title\";s:30:\"Magazine Content Slider Static\";s:5:\"alias\";s:30:\"magazine-content-slider-static\";s:3:\"zip\";s:34:\"magazine-content-slider-static.zip\";s:3:\"uid\";s:32:\"3b1f7d279064fa1fb90bb2000e9ebc7b\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide1.jpg\";s:7:\"preview\";s:158:\"https://www.sliderrevolution.com/templates/magazine-content-slider?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=magazine-content-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:260:\"<span class=\"ttm_content\">This WordPress content slider can display any static content or your WordPress posts. Like any element in this featured slider template, the optional menu can easily be removed if it\'s not needed.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:35:12\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Promote Your Top Content with a Magazine-style Slider [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-top-content-with-a-magazine-style-slider/\";s:9:\"guide_img\";s:36:\"tutorial/Magazine-Content-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:641;a:25:{s:2:\"id\";s:3:\"676\";s:5:\"title\";s:24:\"Masonry Gallery Carousel\";s:5:\"alias\";s:24:\"Masonry-Gallery-Carousel\";s:3:\"zip\";s:28:\"Masonry-Gallery-Carousel.zip\";s:3:\"uid\";s:32:\"c189884a358e4984c8f300916909f54b\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/masonry-gallery-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=masonry-gallery-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">This masonry gallery template for Slider Revolution has three different masonry layouts, which can be mixed & matched and are easily customized. The headline and description captions make this template very flexible, with many use cases.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:39:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Horizontal Masonry Layout for Your Work [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-horizontal-masonry-layout-for-your-work/\";s:9:\"guide_img\";s:37:\"tutorial/Masonry-Gallery-Carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:642;a:25:{s:2:\"id\";s:3:\"677\";s:5:\"title\";s:31:\"Neon WordPress Slider With Text\";s:5:\"alias\";s:21:\"neon-wordpress-slider\";s:3:\"zip\";s:25:\"neon-wordpress-slider.zip\";s:3:\"uid\";s:32:\"9d620dfc8df1be5b956a70106a4ca5d7\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/neon-wordpress-slider-with-text/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=neon-wordpress-slider-with-text\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This is not your average WordPress slider with text and image. Stunning, AI generated images paired with crisp & snappy animations make this Slider Revolution template a winner!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:41:29\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:63:\"Break Down Your Process with a Colorful Image Slider [Tutorial]\";s:9:\"guide_url\";s:96:\"https://www.sliderrevolution.com/tutorials/break-down-your-process-with-a-colorful-image-slider/\";s:9:\"guide_img\";s:34:\"tutorial/neon-wordpress-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:643;a:25:{s:2:\"id\";s:3:\"678\";s:5:\"title\";s:27:\"Restaurant One Page Website\";s:5:\"alias\";s:27:\"Restaurant-One-Page-Website\";s:3:\"zip\";s:31:\"Restaurant-One-Page-Website.zip\";s:3:\"uid\";s:32:\"747730efa359467cb5627ae123839090\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/kostlich-restaurant-one-page-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=kostlich-restaurant-one-page-website\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:285:\"<span class=\"ttm_content\">A restaurant WordPress template can easily be overloaded with features that no one really needs. The Köstlich Restaurant One Page Website template for Slider Revolution focuses on the information, a visitor wants to see.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:43:57\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"A Fast and Easy Way to Create a Good Looking One-Page Restaurant Website [Tutorial]\";s:9:\"guide_url\";s:116:\"https://www.sliderrevolution.com/tutorials/a-fast-and-easy-way-to-create-a-good-looking-one-page-restaurant-website/\";s:9:\"guide_img\";s:40:\"tutorial/Restaurant-One-Page-Website.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:644;a:25:{s:2:\"id\";s:3:\"679\";s:5:\"title\";s:18:\"WooCommerce Slider\";s:5:\"alias\";s:18:\"woocommerce-slider\";s:3:\"zip\";s:22:\"woocommerce-slider.zip\";s:3:\"uid\";s:32:\"5f354f9d17d3b8562e7dfbac0b289ab3\";s:3:\"img\";s:29:\"woocommerce-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/sneaker-woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=sneaker-woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:164:\"<span class=\"ttm_content\">Sell your products faster with this futuristic looking slider with sleek navigation and clean layout</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:47:34\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Beautiful 3D WooCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-3d-woocommerce-product-slider/\";s:9:\"guide_img\";s:38:\"tutorial/woocommerce-slider-static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:645;a:25:{s:2:\"id\";s:3:\"680\";s:5:\"title\";s:25:\"WooCommerce Slider Static\";s:5:\"alias\";s:25:\"woocommerce-slider-static\";s:3:\"zip\";s:29:\"woocommerce-slider-static.zip\";s:3:\"uid\";s:32:\"66d86a41303223abecec3c4820bcd8f0\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/sneaker-woocommerce-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=sneaker-woocommerce-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:164:\"<span class=\"ttm_content\">Sell your products faster with this futuristic looking slider with sleek navigation and clean layout</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:50:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Beautiful 3D WooCommerce Product Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-3d-woocommerce-product-slider/\";s:9:\"guide_img\";s:38:\"tutorial/woocommerce-slider-static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:646;a:25:{s:2:\"id\";s:3:\"681\";s:5:\"title\";s:21:\"WordPress Post Slider\";s:5:\"alias\";s:21:\"wordpress-post-slider\";s:3:\"zip\";s:25:\"wordpress-post-slider.zip\";s:3:\"uid\";s:32:\"c854a5e0be29cb28893b0bb98d9e6740\";s:3:\"img\";s:32:\"wordpress-post-slider/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/superhero-wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=superhero-wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">This amazing Slider Revolution post slider can display static and dynamic WordPress content. Display your blog posts automatically or add your texts and images manually!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"postbased\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:52:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Make Your Employees Look Like Superheroes with a Comic-inspired Slider [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/make-your-employees-look-like-superheroes-with-a-comic-inspired-slider/\";s:9:\"guide_img\";s:41:\"tutorial/WordPress-Post-Slider-Static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:647;a:25:{s:2:\"id\";s:3:\"682\";s:5:\"title\";s:28:\"WordPress Post Slider Static\";s:5:\"alias\";s:28:\"WordPress-Post-Slider-Static\";s:3:\"zip\";s:32:\"WordPress-Post-Slider-Static.zip\";s:3:\"uid\";s:32:\"edbb9e724f7758aff215ab3e743abd9e\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/superhero-wordpress-post-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=superhero-wordpress-post-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">This amazing Slider Revolution post slider can display static and dynamic WordPress content. Display your blog posts automatically or add your texts and images manually!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:53:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Make Your Employees Look Like Superheroes with a Comic-inspired Slider [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/make-your-employees-look-like-superheroes-with-a-comic-inspired-slider/\";s:9:\"guide_img\";s:41:\"tutorial/WordPress-Post-Slider-Static.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:648;a:25:{s:2:\"id\";s:3:\"683\";s:5:\"title\";s:22:\"Wordpress Video Slider\";s:5:\"alias\";s:22:\"wordpress-video-slider\";s:3:\"zip\";s:26:\"wordpress-video-slider.zip\";s:3:\"uid\";s:32:\"fd50cf2c76a1fe0bf8bd35e727a00bb7\";s:3:\"img\";s:33:\"wordpress-video-slider/slide1.jpg\";s:7:\"preview\";s:157:\"https://www.sliderrevolution.com/templates/wordpress-video-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-video-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">The WordPress Video Slider template for Slider Revolution offers a cinematic video viewing experience. With it is stylish, blurred background videos and a video player modal, this template is a fitting hero module choice for many websites.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-10-06 12:55:51\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create Good Vibes on Your Website with a Background Video Slider [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-create-good-vibes-on-your-website-with-a-background-video-slider/\";s:9:\"guide_img\";s:35:\"tutorial/wordpress-video-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:649;a:27:{s:2:\"id\";s:3:\"684\";s:5:\"title\";s:37:\"Architecture Website Template Package\";s:5:\"alias\";s:37:\"architecture-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"architecture-website-template-package\";s:3:\"img\";s:39:\"packages/architecture-website-thumb.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 12:59:17\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:650;a:28:{s:2:\"id\";s:3:\"685\";s:5:\"title\";s:17:\"Architecture Menu\";s:5:\"alias\";s:17:\"architecture-menu\";s:3:\"zip\";s:27:\"packs/architecture-menu.zip\";s:3:\"uid\";s:32:\"a8c46db54ab5fdbb104aacc0cb26d48a\";s:3:\"img\";s:28:\"architecture-menu/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:10:25\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:651;a:28:{s:2:\"id\";s:3:\"686\";s:5:\"title\";s:26:\"Architecture Header Slider\";s:5:\"alias\";s:26:\"architecture-header-slider\";s:3:\"zip\";s:36:\"packs/architecture-header-slider.zip\";s:3:\"uid\";s:32:\"e13d9d910db3371527ceb9f92a27057d\";s:3:\"img\";s:37:\"architecture-header-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:12:12\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:652;a:28:{s:2:\"id\";s:3:\"687\";s:5:\"title\";s:23:\"Architecture Text Block\";s:5:\"alias\";s:23:\"architecture-text-block\";s:3:\"zip\";s:33:\"packs/architecture-text-block.zip\";s:3:\"uid\";s:32:\"c130dd8a5faf7c292c54b99c82226c72\";s:3:\"img\";s:34:\"architecture-text-block/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:15:46\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:653;a:28:{s:2:\"id\";s:3:\"688\";s:5:\"title\";s:18:\"Architecture About\";s:5:\"alias\";s:18:\"architecture-about\";s:3:\"zip\";s:28:\"packs/architecture-about.zip\";s:3:\"uid\";s:32:\"5f589ec1e639ed4aa9b44542659cb2e9\";s:3:\"img\";s:29:\"architecture-about/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:17:04\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:654;a:28:{s:2:\"id\";s:3:\"689\";s:5:\"title\";s:26:\"Architecture Process Title\";s:5:\"alias\";s:26:\"architecture-process-title\";s:3:\"zip\";s:36:\"packs/architecture-process-title.zip\";s:3:\"uid\";s:32:\"6ca17bec2dc410a6c8a80a138c603a3c\";s:3:\"img\";s:37:\"architecture-process-title/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:18:48\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:655;a:28:{s:2:\"id\";s:3:\"690\";s:5:\"title\";s:20:\"Architecture Process\";s:5:\"alias\";s:20:\"architecture-process\";s:3:\"zip\";s:30:\"packs/architecture-process.zip\";s:3:\"uid\";s:32:\"df6202f061079192fde61c7756624c6c\";s:3:\"img\";s:31:\"architecture-process/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:20:31\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:656;a:28:{s:2:\"id\";s:3:\"691\";s:5:\"title\";s:22:\"Architecture Portfolio\";s:5:\"alias\";s:22:\"architecture-portfolio\";s:3:\"zip\";s:32:\"packs/architecture-portfolio.zip\";s:3:\"uid\";s:32:\"444b7a502897a53a16eea5ec3cb7f08c\";s:3:\"img\";s:33:\"architecture-portfolio/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:22:15\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:657;a:28:{s:2:\"id\";s:3:\"692\";s:5:\"title\";s:28:\"Architecture Portfolio Modal\";s:5:\"alias\";s:28:\"architecture-portfolio-modal\";s:3:\"zip\";s:38:\"packs/architecture-portfolio-modal.zip\";s:3:\"uid\";s:32:\"59994ba13c87a5409d75fdcbc7f58005\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:23:38\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:658;a:28:{s:2:\"id\";s:3:\"693\";s:5:\"title\";s:20:\"Architecture Contact\";s:5:\"alias\";s:20:\"architecture-contact\";s:3:\"zip\";s:30:\"packs/architecture-contact.zip\";s:3:\"uid\";s:32:\"b1ff4cf0d6530d79f7d67540ffdcd98d\";s:3:\"img\";s:31:\"architecture-contact/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/architecture-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=architecture-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">The architecture website template offers a modern, visually appealing one-page layout with flexible customization options. This is not just a real estate website, but can also fit for any other kind of theme!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-10-06 13:25:49\";s:7:\"package\";s:37:\"Architecture Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:77:\"A Beautiful Way to Showcase Your Best Work for Prospective Clients [Tutorial]\";s:9:\"guide_url\";s:110:\"https://www.sliderrevolution.com/tutorials/a-beautiful-way-to-showcase-your-best-work-for-prospective-clients/\";s:9:\"guide_img\";s:42:\"tutorial/Architecture-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"59\";s:9:\"installed\";b:0;}i:659;a:24:{s:2:\"id\";s:3:\"694\";s:5:\"title\";s:23:\"Image Comparison Slider\";s:5:\"alias\";s:23:\"image-comparison-slider\";s:3:\"zip\";s:27:\"image-comparison-slider.zip\";s:3:\"uid\";s:32:\"c5af5832be50fc581c3a5ae31b09e5ab\";s:3:\"img\";s:34:\"image-comparison-slider/slide1.jpg\";s:7:\"preview\";s:159:\"https://www.sliderrevolution.com/templates/image-comparison-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=image-comparison-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">Create amazing before and after animations for your website with the image comparison slider template. We made sure to include multiple exciting examples for you to customize to your liking.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:13:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"Boost Interactions with a Before-and-After Image Slider [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/boost-interactions-with-a-before-and-after-image-slider/\";s:9:\"guide_img\";s:36:\"tutorial/image-comparison-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:660;a:27:{s:2:\"id\";s:3:\"695\";s:5:\"title\";s:37:\"Wedding Photo Slider Template Package\";s:5:\"alias\";s:37:\"wedding-photo-slider-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"wedding-photo-slider-template-package\";s:3:\"img\";s:41:\"packages/Wedding-Photo-Slider-Package.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:300:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout. </span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:19:04\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:661;a:27:{s:2:\"id\";s:3:\"696\";s:5:\"title\";s:20:\"Wedding Photo Slider\";s:5:\"alias\";s:20:\"wedding-photo-slider\";s:3:\"zip\";s:30:\"packs/wedding-photo-slider.zip\";s:3:\"uid\";s:32:\"490b30ad46586bbf7034e50651b248a7\";s:3:\"img\";s:31:\"wedding-photo-slider/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:24:38\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:662;a:27:{s:2:\"id\";s:3:\"697\";s:5:\"title\";s:26:\"Wedding Photo Slider Modal\";s:5:\"alias\";s:26:\"wedding-photo-slider-modal\";s:3:\"zip\";s:36:\"packs/wedding-photo-slider-modal.zip\";s:3:\"uid\";s:32:\"56b40b3a73b786f5320f8814cddd3fda\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide1.jpg\";s:7:\"preview\";s:153:\"https://www.sliderrevolution.com/templates/wedding-photo-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wedding-photo-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">This WordPress photo slider template offers many interesting features to elevate your photography website. The main slider rotates through your photo highlights and a click of the button reveals a lightbox carousel with masonry layout.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:363:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:27:53\";s:7:\"package\";s:37:\"Wedding Photo Slider Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:68:\"Create a Beautiful Photo Slider for Your Personal Website [Tutorial]\";s:9:\"guide_url\";s:101:\"https://www.sliderrevolution.com/tutorials/create-a-beautiful-photo-slider-for-your-personal-website/\";s:9:\"guide_img\";s:33:\"tutorial/Wedding-Photo-Slider.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"60\";s:9:\"installed\";b:0;}i:663;a:24:{s:2:\"id\";s:3:\"698\";s:5:\"title\";s:25:\"Travel Agency Card Slider\";s:5:\"alias\";s:24:\"destinations-card-slider\";s:3:\"zip\";s:28:\"destinations-card-slider.zip\";s:3:\"uid\";s:32:\"59af2d3ac72375f6764f224d93d600ac\";s:3:\"img\";s:35:\"destinations-card-slider/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/travel-agency-card-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=travel-agency-card-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The destination of your travel blog or travel booking website, definitely is \"above & beyond\" with this tastefully modern card slider template for Slider Revolution.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:31:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:84:\"How to Make Your Product Comparison Pages More Attractive and Trustworthy [Tutorial]\";s:9:\"guide_url\";s:117:\"https://www.sliderrevolution.com/tutorials/how-to-make-your-product-comparison-pages-more-attractive-and-trustworthy/\";s:9:\"guide_img\";s:37:\"tutorial/destinations-card-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:664;a:24:{s:2:\"id\";s:3:\"699\";s:5:\"title\";s:29:\"Kitchen Knives Product Slider\";s:5:\"alias\";s:21:\"knives-product-slider\";s:3:\"zip\";s:25:\"knives-product-slider.zip\";s:3:\"uid\";s:32:\"b1d2db8fcd3e6bb1e949d00c90fd6ec0\";s:3:\"img\";s:32:\"knives-product-slider/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/kitchen-knives-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=kitchen-knives-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:281:\"<span class=\"ttm_content\">Even if you\'re not into the knives selling business, this product slider template is easily customized to fit any use-case. The beautifully animated parallax elements, can be replaced with your own .png\'s, in no time!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-11-18 11:34:48\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Promote Subscription Boxes with a Unique Product Slider Design [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-promote-subscription-boxes-with-a-unique-product-slider-design/\";s:9:\"guide_img\";s:34:\"tutorial/knives-product-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:665;a:25:{s:2:\"id\";s:3:\"700\";s:5:\"title\";s:16:\"Tiny Slider Dark\";s:5:\"alias\";s:16:\"tiny-slider-dark\";s:3:\"zip\";s:20:\"tiny-slider-dark.zip\";s:3:\"uid\";s:32:\"57f5cd4e698621f5b7e09bc0bb172d72\";s:3:\"img\";s:27:\"tiny-slider-dark/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/event-booking-tiny-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-booking-tiny-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">The Event Booking Tiny Slider is a compact and stylish way to promote your events on your website or social media. With this template, you can create a sleek and minimalistic slider featuring your upcoming events and booking information.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-12-20 13:51:32\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Design an Event Booking Page That Sells More Tickets [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-design-an-event-booking-page-that-sells-more-tickets/\";s:9:\"guide_img\";s:29:\"tutorial/tiny-slider-dark.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:666;a:25:{s:2:\"id\";s:3:\"701\";s:5:\"title\";s:17:\"Tiny Slider Light\";s:5:\"alias\";s:17:\"tiny-slider-light\";s:3:\"zip\";s:21:\"tiny-slider-light.zip\";s:3:\"uid\";s:32:\"67e9640a0dd7ac7c04342a323abb054a\";s:3:\"img\";s:28:\"tiny-slider-light/slide1.jpg\";s:7:\"preview\";s:163:\"https://www.sliderrevolution.com/templates/event-booking-tiny-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=event-booking-tiny-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:301:\"<span class=\"ttm_content\">The Event Booking Tiny Slider is a compact and stylish way to promote your events on your website or social media. With this template, you can create a sleek and minimalistic slider featuring your upcoming events and booking information.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-12-20 13:56:22\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:667;a:25:{s:2:\"id\";s:3:\"702\";s:5:\"title\";s:24:\"Pet Store Product Slider\";s:5:\"alias\";s:24:\"pet-store-product-slider\";s:3:\"zip\";s:28:\"pet-store-product-slider.zip\";s:3:\"uid\";s:32:\"6f847227958900311108951a77721e29\";s:3:\"img\";s:35:\"pet-store-product-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/pet-store-product-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=pet-store-product-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">The Pet Store Product Slider template is a professional and eye-catching way to showcase your pet store\'s products on your website or social media. With this template, you can easily create a dynamic and interactive slider featuring your most popular pet products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-20 14:02:59\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Design More Engaging Product Pages for eCommerce Websites [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-design-more-engaging-product-pages-for-ecommerce-websites/\";s:9:\"guide_img\";s:37:\"tutorial/pet-store-product-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:668;a:24:{s:2:\"id\";s:3:\"703\";s:5:\"title\";s:18:\"Material UI Slider\";s:5:\"alias\";s:18:\"material-ui-slider\";s:3:\"zip\";s:22:\"material-ui-slider.zip\";s:3:\"uid\";s:32:\"7e7909a030545f80c8ba8101c5b9bbd7\";s:3:\"img\";s:29:\"material-ui-slider/slide1.jpg\";s:7:\"preview\";s:149:\"https://www.sliderrevolution.com/templates/material-ui-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=material-ui-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">The Material UI Slider Template is easy to use and requires no coding skills. You can quickly and easily create a professional-looking slider to showcase your products, services, or information in a visually appealing and engaging way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-20 14:06:25\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Promote Your Digital Agency’s Services in a Unique Way [Tutorial]\";s:9:\"guide_url\";s:105:\"https://www.sliderrevolution.com/tutorials/how-to-promote-your-digital-agency-s-services-in-a-unique-way/\";s:9:\"guide_img\";s:31:\"tutorial/material-ui-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:669;a:25:{s:2:\"id\";s:3:\"704\";s:5:\"title\";s:19:\"Happy Holidays Hero\";s:5:\"alias\";s:19:\"happy-holidays-hero\";s:3:\"zip\";s:23:\"happy-holidays-hero.zip\";s:3:\"uid\";s:32:\"aabe32f963bc66d36f617c595ca2f1fd\";s:3:\"img\";s:30:\"happy-holidays-hero/slide1.jpg\";s:7:\"preview\";s:151:\"https://www.sliderrevolution.com/templates/happy-holidays-hero/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=happy-holidays-hero\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Wish everyone happy holidays with our newest Christmas inspired hero section.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:366:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-12-22 09:27:59\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Hero Image Template to Use for Holidays and Sales [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-hero-image-template-to-use-for-holidays-and-sales/\";s:9:\"guide_img\";s:32:\"tutorial/happy-holidays-hero.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:670;a:24:{s:2:\"id\";s:3:\"705\";s:5:\"title\";s:34:\"Space & Sci-Fi Presentation Slider\";s:5:\"alias\";s:36:\"space-and-sci-fi-presentation-slider\";s:3:\"zip\";s:40:\"space-and-sci-fi-presentation-slider.zip\";s:3:\"uid\";s:32:\"6f8a89cfaa624a4ac799901fc85b802d\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide1.png\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/space-sci-fi-presentation-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=space-sci-fi-presentation-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">This is a perfect choice for technology companies, science fiction writers, space enthusiasts and much more.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-01-24 12:57:45\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:86:\"How to Transport Your Visitors to Another Time or Place with Layered Images [Tutorial]\";s:9:\"guide_url\";s:119:\"https://www.sliderrevolution.com/tutorials/how-to-transport-your-visitors-to-another-time-or-place-with-layered-images/\";s:9:\"guide_img\";s:49:\"tutorial/space-and-sci-fi-presentation-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:671;a:24:{s:2:\"id\";s:3:\"706\";s:5:\"title\";s:21:\"Claymorphism Carousel\";s:5:\"alias\";s:21:\"Claymorphism-Carousel\";s:3:\"zip\";s:25:\"Claymorphism-Carousel.zip\";s:3:\"uid\";s:32:\"8faec9adf09737acd8efdad7a1ccb673\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide1.jpg\";s:7:\"preview\";s:155:\"https://www.sliderrevolution.com/templates/claymorphism-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=claymorphism-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.6.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Claymorphism Carousel template for Slider Revolution is a visually striking slider that features the unique claymorphism style.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-01-24 13:01:22\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Create a 3D Space for Your Portfolio Highlight Reel [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-space-for-your-portfolio-highlight-reel/\";s:9:\"guide_img\";s:37:\"tutorial/startup-website-template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:672;a:24:{s:2:\"id\";s:3:\"707\";s:5:\"title\";s:24:\"404 Page Hero Collection\";s:5:\"alias\";s:24:\"404-page-hero-collection\";s:3:\"zip\";s:28:\"404-page-hero-collection.zip\";s:3:\"uid\";s:32:\"a614db3d61935fdf249d7de2ff1f2d8f\";s:3:\"img\";s:35:\"404-page-hero-collection/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/404-page-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=404-page-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:212:\"<span class=\"ttm_content\">With the 404 Page Hero Collection template for Slider Revolution, you have several creative solutions at your disposal, to make your 404 page shine!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-02-22 16:28:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:673;a:24:{s:2:\"id\";s:3:\"708\";s:5:\"title\";s:32:\"Furniture Store Isometric Slider\";s:5:\"alias\";s:32:\"furniture-store-isometric-slider\";s:3:\"zip\";s:36:\"furniture-store-isometric-slider.zip\";s:3:\"uid\";s:32:\"385f8e4dac9f84ea72388f656b200251\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/furniture-store-isometric-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=furniture-store-isometric-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A furniture store slider template with stunning and versatile visuals! With bold and beautiful 3D isometric graphics, it\'s the perfect way to showcase modern furniture pieces and room designs.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-02-22 16:35:11\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:674;a:27:{s:2:\"id\";s:3:\"709\";s:5:\"title\";s:36:\"Woodworking Website Template Package\";s:5:\"alias\";s:36:\"woodworking-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"woodworking-website-template-package\";s:3:\"img\";s:41:\"packages/Woodworking-Website-Template.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 10:54:05\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:675;a:27:{s:2:\"id\";s:3:\"710\";s:5:\"title\";s:22:\"Wood Art One Page Hero\";s:5:\"alias\";s:22:\"wood-art-one-page-hero\";s:3:\"zip\";s:32:\"packs/wood-art-one-page-hero.zip\";s:3:\"uid\";s:32:\"4236270d46058389ddb032f6c68d63dc\";s:3:\"img\";s:33:\"wood-art-one-page-hero/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:15:10\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:676;a:27:{s:2:\"id\";s:3:\"711\";s:5:\"title\";s:23:\"Wood Art One Page About\";s:5:\"alias\";s:23:\"wood-art-one-page-about\";s:3:\"zip\";s:33:\"packs/wood-art-one-page-about.zip\";s:3:\"uid\";s:32:\"c14fe92fa107d914dab4826681db8d1d\";s:3:\"img\";s:34:\"wood-art-one-page-about/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:19:12\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:677;a:27:{s:2:\"id\";s:3:\"712\";s:5:\"title\";s:22:\"Wood Art One Page Work\";s:5:\"alias\";s:22:\"wood-art-one-page-work\";s:3:\"zip\";s:32:\"packs/wood-art-one-page-work.zip\";s:3:\"uid\";s:32:\"a5d98ff9e7ecc52e9c8f5cb69e13fab9\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:23:03\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:678;a:27:{s:2:\"id\";s:3:\"713\";s:5:\"title\";s:30:\"Wood Art One Page Testimonials\";s:5:\"alias\";s:30:\"wood-art-one-page-testimonials\";s:3:\"zip\";s:40:\"packs/wood-art-one-page-testimonials.zip\";s:3:\"uid\";s:32:\"10cc4a93223c739cdd72a6f29ddfdbdc\";s:3:\"img\";s:41:\"wood-art-one-page-testimonials/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:32:12\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:679;a:27:{s:2:\"id\";s:3:\"714\";s:5:\"title\";s:24:\"Wood Art One Page Events\";s:5:\"alias\";s:24:\"wood-art-one-page-events\";s:3:\"zip\";s:34:\"packs/wood-art-one-page-events.zip\";s:3:\"uid\";s:32:\"caf1318cca92472611d1bff75de2834e\";s:3:\"img\";s:35:\"wood-art-one-page-events/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:35:58\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:680;a:27:{s:2:\"id\";s:3:\"715\";s:5:\"title\";s:24:\"Wood Art One Page Footer\";s:5:\"alias\";s:24:\"wood-art-one-page-footer\";s:3:\"zip\";s:34:\"packs/wood-art-one-page-footer.zip\";s:3:\"uid\";s:32:\"096eb58a1bdc1da5f228ee26f44cc35e\";s:3:\"img\";s:35:\"wood-art-one-page-footer/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-15 11:38:37\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:681;a:27:{s:2:\"id\";s:3:\"716\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 1\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery1\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery1.zip\";s:3:\"uid\";s:32:\"9692c155e32743e6ad5656ff98fc1854\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:43:14\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:682;a:27:{s:2:\"id\";s:3:\"717\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 2\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery2\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery2.zip\";s:3:\"uid\";s:32:\"63487dd51eb68d1f748cbdc01d1659aa\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:46:52\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:683;a:27:{s:2:\"id\";s:3:\"718\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 3\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery3\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery3.zip\";s:3:\"uid\";s:32:\"4d907965c605272fdb037aadd150e533\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:49:44\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:684;a:27:{s:2:\"id\";s:3:\"719\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 4\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery4\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery4.zip\";s:3:\"uid\";s:32:\"1ea74ff7001db07847cb98f505f62569\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:53:19\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:685;a:27:{s:2:\"id\";s:3:\"720\";s:5:\"title\";s:27:\"Wood Art One Page Gallery 5\";s:5:\"alias\";s:26:\"wood-art-one-page-gallery5\";s:3:\"zip\";s:36:\"packs/wood-art-one-page-gallery5.zip\";s:3:\"uid\";s:32:\"f7c9b11f559f69fb2fdff1ca96ff9c4d\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide1.jpg\";s:7:\"preview\";s:169:\"https://www.sliderrevolution.com/templates/woodworking-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=woodworking-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:434:\"<span class=\"ttm_content\">A beautifully crafted, user-friendly, and visually stunning template that is perfect for both professional woodworkers and woodworking enthusiasts alike. This template has been meticulously designed to showcase your skills, projects, and products in a captivating and engaging manner, allowing you to create an online presence that truly stands out from the competition.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-03-15 11:56:28\";s:7:\"package\";s:36:\"Woodworking Website Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Create a 3D Product Carousel for Your eCommerce Site [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-3d-product-carousel-for-your-ecommerce-site/\";s:9:\"guide_img\";s:41:\"tutorial/Woodworking-Website-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"61\";s:9:\"installed\";b:0;}i:686;a:24:{s:2:\"id\";s:3:\"721\";s:5:\"title\";s:35:\"Hero Template With Cursor Animation\";s:5:\"alias\";s:35:\"Hero-Template-With-Cursor-Animation\";s:3:\"zip\";s:39:\"Hero-Template-With-Cursor-Animation.zip\";s:3:\"uid\";s:32:\"a0b666db728eb8585980a43443fb30bf\";s:3:\"img\";s:46:\"Hero-Template-With-Cursor-Animation/slide1.jpg\";s:7:\"preview\";s:183:\"https://www.sliderrevolution.com/templates/hero-template-with-cursor-animation/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-template-with-cursor-animation\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Elevate your website with our hero template that features a captivating cursor animation. Perfect for any website design project.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-03-28 11:18:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:65:\"How to Create a Mesmerizing Effect for Your Hero Image [Tutorial]\";s:9:\"guide_url\";s:98:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-mesmerizing-effect-for-your-hero-image/\";s:9:\"guide_img\";s:48:\"tutorial/Hero-Template-With-Cursor-Animation.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:687;a:25:{s:2:\"id\";s:3:\"722\";s:5:\"title\";s:26:\"Modern Hair Salon Showcase\";s:5:\"alias\";s:28:\"futuristic-hairstyles-slider\";s:3:\"zip\";s:32:\"futuristic-hairstyles-slider.zip\";s:3:\"uid\";s:32:\"29d22b07310f9f2a9e504f565bca3864\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide1.jpg\";s:7:\"preview\";s:165:\"https://www.sliderrevolution.com/templates/modern-hair-salon-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-hair-salon-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:331:\"<span class=\"ttm_content\">Showcase your salon\'s unique services, talented stylists, and stunning transformations with high-quality images, videos, and testimonials. Engage your audience with interactive sliders, sleek animations, and an intuitive design that highlights your salon\'s expertise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-04-17 11:43:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"A Creative Way to Display Different Options and Offerings on Your Site [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/a-creative-way-to-display-different-options-and-offerings-on-your-site/\";s:9:\"guide_img\";s:41:\"tutorial/futuristic-hairstyles-slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:688;a:28:{s:2:\"id\";s:3:\"723\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 1\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-1\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-1.zip\";s:3:\"uid\";s:32:\"28ab921107c8748e1f67185448e4488c\";s:3:\"img\";s:39:\"instagram-gallery-carousel-1/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 11:49:21\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:689;a:28:{s:2:\"id\";s:3:\"724\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 2\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-2\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-2.zip\";s:3:\"uid\";s:32:\"b6508dd2b1621eb44fc191906712730a\";s:3:\"img\";s:39:\"instagram-gallery-carousel-2/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 11:59:00\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:690;a:28:{s:2:\"id\";s:3:\"725\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 3\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-3\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-3.zip\";s:3:\"uid\";s:32:\"bbddb7776d56f9417a5aa1ffd336580c\";s:3:\"img\";s:39:\"instagram-gallery-carousel-3/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 12:00:51\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:691;a:28:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:28:\"Instagram Gallery Carousel 4\";s:5:\"alias\";s:28:\"instagram-gallery-carousel-4\";s:3:\"zip\";s:32:\"instagram-gallery-carousel-4.zip\";s:3:\"uid\";s:32:\"191c6f2fc6b1b4d922ac59df22637f04\";s:3:\"img\";s:39:\"instagram-gallery-carousel-4/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-04-17 12:02:42\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:692;a:28:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"modern-portfolio-website\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:152:\"https://revolution.themepunch.com/modern-portfolio-website/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-portfolio-website\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Add a Dramatic Pop of Color to Your Site with a Duotone Effect [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-add-a-dramatic-pop-of-color-to-your-site-with-a-duotone-effect/\";s:9:\"guide_img\";s:37:\"tutorial/Modern-Portfolio-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:693;a:27:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"brutal-website-template\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:150:\"https://revolution.themepunch.com/brutal-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brutal-website-template\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:78:\"How to Create a Scroll-Triggered About Me Section for the Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-scroll-triggered-about-me-section-for-the-home-page/\";s:9:\"guide_img\";s:27:\"tutorial/Brutal-Website.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:694;a:28:{s:2:\"id\";s:3:\"727\";s:5:\"title\";s:31:\"Instagram Gallery Carousel Pack\";s:5:\"alias\";s:31:\"instagram-gallery-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"instagram-gallery-carousel-pack\";s:3:\"img\";s:39:\"packages/Instagram-Gallery-Carousel.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/wordpress-image-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=wordpress-image-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">Effortlessly blend your website\'s visual content with your vibrant Instagram feed in a sleek, responsive carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-03 08:57:11\";s:7:\"package\";s:31:\"Instagram Gallery Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:70:\"How to Uniquely Display Your Instagram Feed on Your Website [Tutorial]\";s:9:\"guide_url\";s:103:\"https://www.sliderrevolution.com/tutorials/how-to-uniquely-display-your-instagram-feed-on-your-website/\";s:9:\"guide_img\";s:44:\"tutorial/Instagram-Gallery-Carousel-Pack.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"62\";s:9:\"installed\";b:0;}i:695;a:25:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:29:\"Storytelling Website Template\";s:5:\"alias\";s:29:\"Storytelling-Website-Template\";s:3:\"zip\";s:33:\"Storytelling-Website-Template.zip\";s:3:\"uid\";s:32:\"43a1d7c46025ab8f0b9fc49837f068de\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide1.jpg\";s:7:\"preview\";s:170:\"https://www.sliderrevolution.com/templates/storytelling-website-template?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=storytelling-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">The ultimate solution to captivate your audience with immersive and interactive storytelling experiences.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-04 12:49:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:696;a:28:{s:2:\"id\";s:3:\"729\";s:5:\"title\";s:32:\"Generative AI Wordpress Template\";s:5:\"alias\";s:32:\"generative-ai-wordpress-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"generative-ai-wordpress-template\";s:3:\"img\";s:45:\"packages/Generative-AI-Wordpress-Template.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:535:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-19 11:03:15\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:697;a:28:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:9:\"G AI Hero\";s:5:\"alias\";s:9:\"G-AI-Hero\";s:3:\"zip\";s:19:\"packs/G-AI-Hero.zip\";s:3:\"uid\";s:32:\"bddbaf321d5e7fd3c46ad3cf7b684934\";s:3:\"img\";s:20:\"G-AI-Hero/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:06:43\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:698;a:28:{s:2:\"id\";s:3:\"731\";s:5:\"title\";s:10:\"G AI Intro\";s:5:\"alias\";s:10:\"G-AI-Intro\";s:3:\"zip\";s:20:\"packs/G-AI-Intro.zip\";s:3:\"uid\";s:32:\"c260d21743606248a98ebc9fe0f7daa0\";s:3:\"img\";s:21:\"G-AI-Intro/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:09:41\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:699;a:28:{s:2:\"id\";s:3:\"732\";s:5:\"title\";s:10:\"G AI Logos\";s:5:\"alias\";s:10:\"G-AI-Logos\";s:3:\"zip\";s:20:\"packs/G-AI-Logos.zip\";s:3:\"uid\";s:32:\"5e701af3844551f18cf4d45a6853cedd\";s:3:\"img\";s:21:\"G-AI-Logos/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:12:16\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:700;a:28:{s:2:\"id\";s:3:\"733\";s:5:\"title\";s:11:\"G AI Images\";s:5:\"alias\";s:11:\"G-AI-Images\";s:3:\"zip\";s:21:\"packs/G-AI-Images.zip\";s:3:\"uid\";s:32:\"8862e4e3ce5c3d67f80809d892df54f5\";s:3:\"img\";s:22:\"G-AI-Images/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:14:32\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:701;a:28:{s:2:\"id\";s:3:\"734\";s:5:\"title\";s:9:\"G AI Copy\";s:5:\"alias\";s:9:\"G-AI-Copy\";s:3:\"zip\";s:19:\"packs/G-AI-Copy.zip\";s:3:\"uid\";s:32:\"067c9615856d2ec6be31b066d82c2306\";s:3:\"img\";s:20:\"G-AI-Copy/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:17:03\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:702;a:28:{s:2:\"id\";s:3:\"735\";s:5:\"title\";s:10:\"G AI Tools\";s:5:\"alias\";s:10:\"G-AI-Tools\";s:3:\"zip\";s:20:\"packs/G-AI-Tools.zip\";s:3:\"uid\";s:32:\"23805fec299a8ca82659c030a4f16ce5\";s:3:\"img\";s:21:\"G-AI-Tools/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-05-19 11:18:36\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:703;a:28:{s:2:\"id\";s:3:\"736\";s:5:\"title\";s:10:\"G AI Cases\";s:5:\"alias\";s:10:\"G-AI-Cases\";s:3:\"zip\";s:20:\"packs/G-AI-Cases.zip\";s:3:\"uid\";s:32:\"7b474fb1cbc351d00732a51524cc0ae0\";s:3:\"img\";s:21:\"G-AI-Cases/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:22:41\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:704;a:28:{s:2:\"id\";s:3:\"737\";s:5:\"title\";s:18:\"G AI Gallery Title\";s:5:\"alias\";s:18:\"G-AI-Gallery-Title\";s:3:\"zip\";s:28:\"packs/G-AI-Gallery-Title.zip\";s:3:\"uid\";s:32:\"6e28c3f7027e58537782b95d0290b16e\";s:3:\"img\";s:29:\"G-AI-Gallery-Title/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:24:20\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:705;a:28:{s:2:\"id\";s:3:\"738\";s:5:\"title\";s:12:\"G AI Gallery\";s:5:\"alias\";s:12:\"G-AI-Gallery\";s:3:\"zip\";s:22:\"packs/G-AI-Gallery.zip\";s:3:\"uid\";s:32:\"9ce2e0db0c4af129329b42169133de12\";s:3:\"img\";s:23:\"G-AI-Gallery/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:26:02\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:706;a:28:{s:2:\"id\";s:3:\"739\";s:5:\"title\";s:17:\"G AI Testimonials\";s:5:\"alias\";s:17:\"G-AI-Testimonials\";s:3:\"zip\";s:27:\"packs/G-AI-Testimonials.zip\";s:3:\"uid\";s:32:\"2bdff749f895cf484919fa379daa4ce1\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:29:00\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:707;a:28:{s:2:\"id\";s:3:\"740\";s:5:\"title\";s:11:\"G AI Footer\";s:5:\"alias\";s:11:\"G-AI-Footer\";s:3:\"zip\";s:21:\"packs/G-AI-Footer.zip\";s:3:\"uid\";s:32:\"756676ee2fb920253d84e0558b9e5c43\";s:3:\"img\";s:22:\"G-AI-Footer/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/generative-ai-wordpress-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=generative-ai-wordpress-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.13\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:332:\"<span class=\"ttm_content\">Introducing the Generative AI WordPress template, exclusively available on Slider Revolution. Elevate your online presence and captivate your audience with captivating visuals and dynamic content. Embrace the future of design with the Generative AI WordPress template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-05-19 11:31:24\";s:7:\"package\";s:40:\"Generative AI Wordpress Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:74:\"How to Create a Video Reel That Impresses Your Website Visitors [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-video-reel-that-impresses-your-website-visitors/\";s:9:\"guide_img\";s:45:\"tutorial/Generative-AI-Wordpress-Template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"63\";s:9:\"installed\";b:0;}i:708;a:28:{s:2:\"id\";s:3:\"741\";s:5:\"title\";s:23:\"Visual Design One-Pager\";s:5:\"alias\";s:23:\"visual-design-one-pager\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"visual-design-one-pager\";s:3:\"img\";s:36:\"packages/Visual-Design-One-Pager.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:01:18\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:709;a:28:{s:2:\"id\";s:3:\"742\";s:5:\"title\";s:20:\"Visual Designer Menu\";s:5:\"alias\";s:20:\"visual-designer-menu\";s:3:\"zip\";s:30:\"packs/visual-designer-menu.zip\";s:3:\"uid\";s:32:\"5c5177905993ce5e7919d1360f0a264b\";s:3:\"img\";s:31:\"visual-designer-menu/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:04:41\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:710;a:28:{s:2:\"id\";s:3:\"743\";s:5:\"title\";s:22:\"Visual Designer Slider\";s:5:\"alias\";s:22:\"visual-designer-slider\";s:3:\"zip\";s:32:\"packs/visual-designer-slider.zip\";s:3:\"uid\";s:32:\"9a48f4a2546c87d311f692aa1a2d70a4\";s:3:\"img\";s:33:\"visual-designer-slider/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:06:26\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:711;a:28:{s:2:\"id\";s:3:\"744\";s:5:\"title\";s:25:\"Visual Designer Portfolio\";s:5:\"alias\";s:25:\"Visual-Designer-Portfolio\";s:3:\"zip\";s:35:\"packs/Visual-Designer-Portfolio.zip\";s:3:\"uid\";s:32:\"d53dbb86df1fca5ac940eb98a045b7f7\";s:3:\"img\";s:36:\"Visual-Designer-Portfolio/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-05 13:08:57\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:712;a:27:{s:2:\"id\";s:3:\"745\";s:5:\"title\";s:21:\"Visual Designer About\";s:5:\"alias\";s:21:\"Visual-Designer-About\";s:3:\"zip\";s:31:\"packs/Visual-Designer-About.zip\";s:3:\"uid\";s:32:\"0968eb1bf48e95ddccc9fb7555752099\";s:3:\"img\";s:32:\"Visual-Designer-About/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:10:45\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:713;a:28:{s:2:\"id\";s:3:\"746\";s:5:\"title\";s:22:\"Visual Designer Footer\";s:5:\"alias\";s:22:\"visual-designer-footer\";s:3:\"zip\";s:32:\"packs/visual-designer-footer.zip\";s:3:\"uid\";s:32:\"e6027c38009d73cf8ddaeb70ea48d8a8\";s:3:\"img\";s:33:\"visual-designer-footer/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:12:21\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:714;a:28:{s:2:\"id\";s:3:\"747\";s:5:\"title\";s:27:\"Visual Designer Detail View\";s:5:\"alias\";s:27:\"Visual-Designer-Detail-View\";s:3:\"zip\";s:37:\"packs/Visual-Designer-Detail-View.zip\";s:3:\"uid\";s:32:\"1faa6ce0fc43a08f3800acace5eb2925\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/visual-design-one-page-portfolio-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=visual-design-one-page-portfolio-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">Whether you are a web designer, AI artist, 3D designer, digital illustrator, UI/UX designer, or photographer, this template is designed to showcase your work in the most impressive way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-06-05 13:14:05\";s:7:\"package\";s:31:\"Visual Design One-Pager Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:44:\"Page Portfolio Site in Just Hours [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-one-page-portfolio-site-in-just-hours/\";s:9:\"guide_img\";s:36:\"tutorial/Visual-Design-One-Pager.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"64\";s:9:\"installed\";b:0;}i:715;a:25:{s:2:\"id\";s:3:\"748\";s:5:\"title\";s:24:\"Online Watch Shop Slider\";s:5:\"alias\";s:24:\"online-watch-shop-slider\";s:3:\"zip\";s:28:\"online-watch-shop-slider.zip\";s:3:\"uid\";s:32:\"bbe52119b342d63ead804a91e2ade96d\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide1.jpg\";s:7:\"preview\";s:161:\"https://www.sliderrevolution.com/templates/online-watch-shop-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=online-watch-shop-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:524:\"<span class=\"ttm_content\">The \"Online Watch Shop Slider\" is a stunning design tailored specifically for watch retailers and enthusiasts. With its sleek and modern layout, this template allows you to showcase your collection of timepieces in a visually captivating manner. Featuring smooth transitions and customizable slides, this template provides a seamless browsing experience for your customers, making it an ideal choice for online watch shops aiming to leave a lasting impression.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-12 08:36:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Create a Product Comparison Slider for Your Shop’s Home Page [Tutorial]\";s:9:\"guide_url\";s:111:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-product-comparison-slider-for-your-shop-s-home-page/\";s:9:\"guide_img\";s:37:\"tutorial/Online-Watch-Shop-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:716;a:25:{s:2:\"id\";s:3:\"749\";s:5:\"title\";s:31:\"Brewery Website Slider Template\";s:5:\"alias\";s:31:\"Brewery-Website-Slider-Template\";s:3:\"zip\";s:35:\"Brewery-Website-Slider-Template.zip\";s:3:\"uid\";s:32:\"bcf9213d1ba9c2c41382433c124adf30\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/brewery-website-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=brewery-website-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:421:\"<span class=\"ttm_content\">The Brewery Website Slider Template offers a visually appealing and versatile design, perfect for showcasing the unique offerings of any brewery. With its captivating imagery, smooth transitions, and customizable elements, this template creates an engaging experience that entices visitors to explore the brewery\'s story and discover its exceptional brews. </span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-23 11:27:46\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:61:\"How to Market Drink Products with a Stylish Slider [Tutorial]\";s:9:\"guide_url\";s:94:\"https://www.sliderrevolution.com/tutorials/how-to-market-drink-products-with-a-stylish-slider/\";s:9:\"guide_img\";s:44:\"tutorial/Brewery-Website-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:717;a:26:{s:2:\"id\";s:3:\"750\";s:5:\"title\";s:40:\"Hero Slider with Midjourney Image Effect\";s:5:\"alias\";s:40:\"Hero-Slider-with-Midjourney-Image-Effect\";s:3:\"zip\";s:44:\"Hero-Slider-with-Midjourney-Image-Effect.zip\";s:3:\"uid\";s:32:\"45db238a0a64622e4d39f1993106d5e6\";s:3:\"img\";s:51:\"Hero-Slider-with-Midjourney-Image-Effect/slide1.jpg\";s:7:\"preview\";s:193:\"https://www.sliderrevolution.com/templates/hero-slider-with-midjourney-image-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=hero-slider-with-midjourney-image-effect\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:427:\"<span class=\"ttm_content\">Experience the magic of our new Hero Slider template, featuring the innovative Midjourney Image Effect. This unique template brings the style of an action movie poster to your website, offering an interactive intro that iss sure to captivate visitors. The Midjourney Image sequence, with its subtle variations, adds a dynamic touch, making your website stand out.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-06-28 13:47:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:83:\"How to Design a High Impact Image for Your Fitness Website’s Home Page [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-high-impact-image-for-your-fitness-website-s-home-page/\";s:9:\"guide_img\";s:53:\"tutorial/Hero-Slider-with-Midjourney-Image-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:718;a:25:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:31:\"Highlight Hero Section Template\";s:5:\"alias\";s:31:\"Highlight-Hero-Section-Template\";s:3:\"zip\";s:35:\"Highlight-Hero-Section-Template.zip\";s:3:\"uid\";s:32:\"e16c375827f3c54cdd224ef612e3e31a\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/highlight-hero-section-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=highlight-hero-section-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:334:\"<span class=\"ttm_content\">Introducing the Highlight Hero Section Template for Slider Revolution. Make a bold first impression with stunning visuals and seamless animations. Customize every aspect effortlessly and engage your visitors instantly. Elevate your website with this remarkable template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-07-06 10:07:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:79:\"How to Attract Customers to Your Store with a Highlight Hero Section [Tutorial]\";s:9:\"guide_url\";s:112:\"https://www.sliderrevolution.com/tutorials/how-to-attract-customers-to-your-store-with-a-highlight-hero-section/\";s:9:\"guide_img\";s:44:\"tutorial/Highlight-Hero-Section-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:719;a:25:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:36:\"Samurai Fullscreen Carousel Template\";s:5:\"alias\";s:36:\"Samurai-Fullscreen-Carousel-Template\";s:3:\"zip\";s:40:\"Samurai-Fullscreen-Carousel-Template.zip\";s:3:\"uid\";s:32:\"8b5c5483aa54c09be24bb18a20ec98a5\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide1.jpg\";s:7:\"preview\";s:185:\"https://www.sliderrevolution.com/templates/samurai-fullscreen-carousel-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=samurai-fullscreen-carousel-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:318:\"<span class=\"ttm_content\">Experience the power of our Samurai Fullscreen Carousel Template. With large, bold captions, call-to-action buttons, and tab navigation, it iss a visual feast. Seamlessly pan across a panorama of samurai warriors, thanks to Midjourneys new \"pan\" feature.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-07-10 12:21:25\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:64:\"How to Create a Beautiful Fullscreen Product Carousel [Tutorial]\";s:9:\"guide_url\";s:97:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-fullscreen-product-carousel/\";s:9:\"guide_img\";s:49:\"tutorial/Samurai-Fullscreen-Carousel-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:720;a:28:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:32:\"Surf Scroll Based Story Template\";s:5:\"alias\";s:32:\"surf-scroll-based-story-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"surf-scroll-based-story-template\";s:3:\"img\";s:45:\"packages/surf-scroll-based-story-template.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:45:39\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:721;a:28:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:18:\"Surf Template Logo\";s:5:\"alias\";s:18:\"Surf-Template-Logo\";s:3:\"zip\";s:28:\"packs/Surf-Template-Logo.zip\";s:3:\"uid\";s:32:\"8bf655d46efa183455bffc8ea5ddd18f\";s:3:\"img\";s:29:\"Surf-Template-Logo/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-08-04 10:48:52\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:722;a:28:{s:2:\"id\";s:3:\"755\";s:5:\"title\";s:15:\"Surf Template 1\";s:5:\"alias\";s:15:\"Surf-Template-1\";s:3:\"zip\";s:25:\"packs/Surf-Template-1.zip\";s:3:\"uid\";s:32:\"4a532d7cbbe52544f41a6a81023a3879\";s:3:\"img\";s:26:\"Surf-Template-1/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:52:16\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:723;a:28:{s:2:\"id\";s:3:\"756\";s:5:\"title\";s:15:\"Surf Template 2\";s:5:\"alias\";s:15:\"Surf-Template-2\";s:3:\"zip\";s:25:\"packs/Surf-Template-2.zip\";s:3:\"uid\";s:32:\"7d76218ed2d5144b9dcc0669bb3e346a\";s:3:\"img\";s:26:\"Surf-Template-2/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:54:13\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:724;a:28:{s:2:\"id\";s:3:\"757\";s:5:\"title\";s:15:\"Surf Template 3\";s:5:\"alias\";s:15:\"Surf-Template-3\";s:3:\"zip\";s:25:\"packs/Surf-Template-3.zip\";s:3:\"uid\";s:32:\"a42b54df91b2c3987bbe22280c26b40d\";s:3:\"img\";s:26:\"Surf-Template-3/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:56:13\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:725;a:28:{s:2:\"id\";s:3:\"758\";s:5:\"title\";s:15:\"Surf Template 4\";s:5:\"alias\";s:15:\"Surf-Template-4\";s:3:\"zip\";s:25:\"packs/Surf-Template-4.zip\";s:3:\"uid\";s:32:\"017fb0dca11e63421427315718464823\";s:3:\"img\";s:26:\"Surf-Template-4/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/surf-scroll-based-story-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=surf-scroll-based-story-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">Dive into the world of immersive storytelling with the \"Surf Scroll Based Story Template\" for Slider Revolution! Take your website visitors on an unforgettable journey through the waves of creativity and engage them like never before.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-04 10:58:06\";s:7:\"package\";s:40:\"Surf Scroll Based Story Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Use Lifestyle Imagery to Shape Your eCommerce Brand’s Identity [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-use-lifestyle-imagery-to-shape-your-ecommerce-brand-s-identity/\";s:9:\"guide_img\";s:45:\"tutorial/surf-scroll-based-story-template.png\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"65\";s:9:\"installed\";b:0;}i:726;a:26:{s:2:\"id\";s:3:\"759\";s:5:\"title\";s:33:\"50/50 Split Screen Website Design\";s:5:\"alias\";s:33:\"50-50-Split-Screen-Website-Design\";s:3:\"zip\";s:37:\"50-50-Split-Screen-Website-Design.zip\";s:3:\"uid\";s:32:\"e524d518ac23d3f408fca3caddf2dac3\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide1.jpg\";s:7:\"preview\";s:167:\"https://www.sliderrevolution.com/templates/split-screen-website-design/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=split-screen-website-design\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:442:\"<span class=\"ttm_content\">Introducing the 50/50 Split Screen Website Design template: A dynamic showcase that seamlessly balances content and visuals. With a sleek half-and-half layout, captivate your audience with contrasting elements while delivering a clear and engaging message. Customize effortlessly and elevate your web presence with this modern, user-friendly design, only with Slider Revolution.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-08 12:22:38\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:71:\"How to Design a Unique Split Screen Layout for Your Homepage [Tutorial]\";s:9:\"guide_url\";s:104:\"https://www.sliderrevolution.com/tutorials/how-to-design-a-unique-split-screen-layout-for-your-homepage/\";s:9:\"guide_img\";s:46:\"tutorial/50-50-Split-Screen-Website-Design.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:727;a:25:{s:2:\"id\";s:3:\"760\";s:5:\"title\";s:33:\"Food Presentation Template Slider\";s:5:\"alias\";s:33:\"Food-Presentation-Template-Slider\";s:3:\"zip\";s:37:\"Food-Presentation-Template-Slider.zip\";s:3:\"uid\";s:32:\"7ebe00aee026ff7baeffaad909e6ee24\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide1.jpg\";s:7:\"preview\";s:179:\"https://www.sliderrevolution.com/templates/food-presentation-template-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=food-presentation-template-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:422:\"<span class=\"ttm_content\">Unveil the essence of your cuisine with the \"Food Presentation Template Slider.\" Elevate your dishes through seamless transitions, vibrant imagery, and enticing descriptions in this captivating slider. Engage your audience, tantalize their taste buds, and showcase your culinary artistry effortlessly. Now available in the Slider Revolution template library.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-18 11:56:17\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create a Classy Product Slider for Your Shop’s Home Page [Tutorial]\";s:9:\"guide_url\";s:107:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-classy-product-slider-for-your-shop-s-home-page/\";s:9:\"guide_img\";s:46:\"tutorial/Food-Presentation-Template-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:728;a:25:{s:2:\"id\";s:3:\"761\";s:5:\"title\";s:38:\"FutureSight Digital Marketing Template\";s:5:\"alias\";s:38:\"FutureSight-Digital-Marketing-Template\";s:3:\"zip\";s:42:\"FutureSight-Digital-Marketing-Template.zip\";s:3:\"uid\";s:32:\"9bfd6be89aca94230967563d61b796b3\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide1.jpg\";s:7:\"preview\";s:189:\"https://www.sliderrevolution.com/templates/futuresight-digital-marketing-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=futuresight-digital-marketing-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:276:\"<span class=\"ttm_content\">Embrace the future with FutureSight - a template designed for visionary marketers. Its sleek design, combined with dynamic animations, offers a seamless user experience. Perfect for agencies aiming for the stars.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-08-23 10:38:17\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"How to Create an Eye-Catching Hero with Gradients and Particle Effects [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-hero-with-gradients-and-particle-effects/\";s:9:\"guide_img\";s:51:\"tutorial/FutureSight-Digital-Marketing-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:729;a:25:{s:2:\"id\";s:3:\"762\";s:5:\"title\";s:40:\"Starry Night Parallax Zoom Effect Slider\";s:5:\"alias\";s:40:\"Starry-Night-Parallax-Zoom-Effect-Slider\";s:3:\"zip\";s:44:\"Starry-Night-Parallax-Zoom-Effect-Slider.zip\";s:3:\"uid\";s:32:\"dd0a9034a10397ba5b0b76fb8d7e203c\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide1.jpg\";s:7:\"preview\";s:193:\"https://www.sliderrevolution.com/templates/starry-night-parallax-zoom-effect-slider/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=starry-night-parallax-zoom-effect-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:498:\"<span class=\"ttm_content\">The \"Starry Night Parallax Zoom Effect Slider\" is a captivating template that transforms your website slider into a mesmerizing journey through a celestial dreamscape. With stunning parallax and zoom effects, it immerses your audience in a starry night sky, creating a visually stunning and engaging user experience that will leave a lasting impression. Perfect for showcasing your content or products with a touch of celestial magic.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-09-13 11:16:06\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create an Eye-catching Slider with a Parallax Zoom Effect [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-slider-with-a-parallax-zoom-effect/\";s:9:\"guide_img\";s:53:\"tutorial/Starry-Night-Parallax-Zoom-Effect-Slider.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:730;a:25:{s:2:\"id\";s:3:\"763\";s:5:\"title\";s:44:\"Beyond The Void Parallax Hero With Particles\";s:5:\"alias\";s:15:\"beyond-the-void\";s:3:\"zip\";s:19:\"beyond-the-void.zip\";s:3:\"uid\";s:32:\"c7f47a117b31c76d7f3ad52440abed86\";s:3:\"img\";s:26:\"beyond-the-void/slide1.jpg\";s:7:\"preview\";s:201:\"https://www.sliderrevolution.com/templates/beyond-the-void-parallax-hero-with-particles/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=beyond-the-void-parallax-hero-with-particles\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:384:\"<span class=\"ttm_content\">Journey beyond the stars with our latest template. An astronaut, after landing on a distant asteroid, unveils an alien anomaly. This parallax hero design, reminiscent of a cinematic sci-fi poster, promises a visual treat. \"Beyond the stars, he found the unknown. Now it is coming home.\" Experience the magic of the void.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:10:\"Special FX\";}s:14:\"plugin_require\";s:357:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-09-19 14:42:06\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:69:\"How to Enhance Your Hero Image Design with Special Effects [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-enhance-your-hero-image-design-with-special-effects/\";s:9:\"guide_img\";s:28:\"tutorial/beyond-the-void.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:731;a:25:{s:2:\"id\";s:3:\"764\";s:5:\"title\";s:46:\"Extravaganza Ecommerce Product Carousel Static\";s:5:\"alias\";s:33:\"Static-Ecommerce-Product-Carousel\";s:3:\"zip\";s:37:\"Static-Ecommerce-Product-Carousel.zip\";s:3:\"uid\";s:32:\"6bb030f4419e247edfaf94478aa6578e\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/extravaganza-ecommerce-product-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=extravaganza-ecommerce-product-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Step up your online store with the Extravaganza Ecommerce Product Carousel. Crafted for the contemporary shop, it flaunts products in their full glory, enveloped in a dark, sleek aesthetic. There is a WooCommerce version and a static version available, which you can adapt to work with any WordPress website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-10-04 11:56:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Beautiful Product Carousel Design [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-product-carousel-design-tutorial/\";s:9:\"guide_img\";s:39:\"tutorial/ecommerce-product-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:732;a:25:{s:2:\"id\";s:3:\"765\";s:5:\"title\";s:43:\"Extravaganza Ecommerce Product Carousel Woo\";s:5:\"alias\";s:30:\"woo-ecommerce-product-carousel\";s:3:\"zip\";s:34:\"woo-ecommerce-product-carousel.zip\";s:3:\"uid\";s:32:\"51b63bf649fdff61634fe888f51ddb4d\";s:3:\"img\";s:41:\"woo-ecommerce-product-carousel/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/extravaganza-ecommerce-product-carousel/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=extravaganza-ecommerce-product-carousel\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Step up your online store with the Extravaganza Ecommerce Product Carousel. Crafted for the contemporary shop, it flaunts products in their full glory, enveloped in a dark, sleek aesthetic. There is a WooCommerce version and a static version available, which you can adapt to work with any WordPress website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2023-10-04 12:00:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:60:\"How to Create a Beautiful Product Carousel Design [Tutorial]\";s:9:\"guide_url\";s:102:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-beautiful-product-carousel-design-tutorial/\";s:9:\"guide_img\";s:39:\"tutorial/ecommerce-product-carousel.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:733;a:25:{s:2:\"id\";s:3:\"766\";s:5:\"title\";s:31:\"Serenity Hero With Focus Effect\";s:5:\"alias\";s:31:\"Serenity-Hero-With-Focus-Effect\";s:3:\"zip\";s:35:\"Serenity-Hero-With-Focus-Effect.zip\";s:3:\"uid\";s:32:\"f0c6d9090236c20b1d7536aedc3d8cf8\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide1.jpg\";s:7:\"preview\";s:175:\"https://www.sliderrevolution.com/templates/serenity-hero-with-focus-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=serenity-hero-with-focus-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:578:\"<span class=\"ttm_content\">Enhance your websites visual appeal with the \"Serenity Hero With Focus Effect\" Slider Revolution template. This mesmerizing slider seamlessly combines tranquil backgrounds with dynamic focus effects, guiding your audiences attention to vital elements of your content. Impress with engaging animations, ensure responsive design across all devices, and customize effortlessly to match your brands style. Create a captivating user experience that converts visitors into devoted followers with this exceptional slider.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-10-04 12:03:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:80:\"How to Create a Focus Effect to Draw Attention to Your Product Images [Tutorial]\";s:9:\"guide_url\";s:113:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-focus-effect-to-draw-attention-to-your-product-images/\";s:9:\"guide_img\";s:44:\"tutorial/Serenity-Hero-With-Focus-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:734;a:25:{s:2:\"id\";s:3:\"767\";s:5:\"title\";s:29:\"OakGrove Wine Slider Template\";s:5:\"alias\";s:29:\"OakGrove-Wine-Slider-Template\";s:3:\"zip\";s:33:\"OakGrove-Wine-Slider-Template.zip\";s:3:\"uid\";s:32:\"151ae1d2e6e7b84873f8b62ba57f829c\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/oakgrove-wine-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=oakgrove-wine-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:421:\"<span class=\"ttm_content\">Unveil the allure of your wines with the \"OakGrove Wine Slider Template.\" Infused with rustic elegance and smooth transitions, this template offers a captivating journey through your vineyards legacy. Whether you are a boutique winery or an established vineyard, this slider is the ideal tool to showcase your finest vintages and unique tasting experiences.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-03 15:34:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:66:\"How to Create a Mysterious Splash Page for Your Website [Tutorial]\";s:9:\"guide_url\";s:99:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-mysterious-splash-page-for-your-website/\";s:9:\"guide_img\";s:42:\"tutorial/OakGrove-Wine-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:735;a:25:{s:2:\"id\";s:3:\"768\";s:5:\"title\";s:32:\"Geometric Slider Design Template\";s:5:\"alias\";s:32:\"Geometric-Slider-Design-Template\";s:3:\"zip\";s:36:\"Geometric-Slider-Design-Template.zip\";s:3:\"uid\";s:32:\"f024549e5a43b79c185def088f00e42f\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/geometric-slider-design-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=geometric-slider-design-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:446:\"<span class=\"ttm_content\">Immerse your audience in contemporary visual sophistication with our Geometric Slider Design Template. This dynamic slider combines sleek geometric patterns with a modern aesthetic, creating a captivating visual experience. With its seamless integration and customizable features, effortlessly elevate your websites allure and engage your visitors in a cutting-edge digital journey.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:25:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create an Eye-catching Geometric Design for Your Homepage [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-geometric-design-for-your-homepage/\";s:9:\"guide_img\";s:45:\"tutorial/Geometric-Slider-Design-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:736;a:25:{s:2:\"id\";s:3:\"769\";s:5:\"title\";s:43:\"Chocolate Bar Product Presentation Template\";s:5:\"alias\";s:43:\"Chocolate-Bar-Product-Presentation-Template\";s:3:\"zip\";s:47:\"Chocolate-Bar-Product-Presentation-Template.zip\";s:3:\"uid\";s:32:\"dc30a3d883c8d16de25544e94640c982\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide1.jpg\";s:7:\"preview\";s:199:\"https://www.sliderrevolution.com/templates/chocolate-bar-product-presentation-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=chocolate-bar-product-presentation-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:346:\"<span class=\"ttm_content\">Unwrap the \"Chocolate Bar Product Presentation Template\" – a delectable, visually captivating showcase for your irresistible chocolate creations. Whether you are a chocolatier or a gourmet brand, this template is the key to presenting your products with a touch of sophistication.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:29:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:75:\"How to Create a Unique Product Presentation Slider for Your Site [Tutorial]\";s:9:\"guide_url\";s:108:\"https://www.sliderrevolution.com/tutorials/how-to-create-a-unique-product-presentation-slider-for-your-site/\";s:9:\"guide_img\";s:56:\"tutorial/Chocolate-Bar-Product-Presentation-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:737;a:25:{s:2:\"id\";s:3:\"770\";s:5:\"title\";s:30:\"Fluid Dynamics Effect Showcase\";s:5:\"alias\";s:30:\"Fluid-Dynamics-Effect-Showcase\";s:3:\"zip\";s:34:\"Fluid-Dynamics-Effect-Showcase.zip\";s:3:\"uid\";s:32:\"cdd9213edf970f1fe04ded427fb2ada8\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide1.jpg\";s:7:\"preview\";s:173:\"https://www.sliderrevolution.com/templates/fluid-dynamics-effect-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=fluid-dynamics-effect-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.18\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:312:\"<span class=\"ttm_content\">Introducing the Fluid Dynamics Effect Showcase - a mesmerizing journey through liquid/gas wonders. Delve into cyber flows, chromatic ripples, ethereal jungle spirits, and cosmic collisions. Crafted for those who appreciate the magic in every pixel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:10:\"Special FX\";}s:14:\"plugin_require\";s:181:\"[{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-11-14 10:32:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"Add Some Magic to Your Hero Section with Liquid Animation Effects [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/add-some-magic-to-your-hero-section-with-liquid-animation-effects/\";s:9:\"guide_img\";s:43:\"tutorial/Fluid-Dynamics-Effect-Showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:738;a:24:{s:2:\"id\";s:3:\"771\";s:5:\"title\";s:39:\"Spotlight Hero Header With Fluid Effect\";s:5:\"alias\";s:39:\"Spotlight-Hero-Header-With-Fluid-Effect\";s:3:\"zip\";s:43:\"Spotlight-Hero-Header-With-Fluid-Effect.zip\";s:3:\"uid\";s:32:\"c15c375d48a9368fcb61f6a732fb9b9b\";s:3:\"img\";s:50:\"Spotlight-Hero-Header-With-Fluid-Effect/slide1.jpg\";s:7:\"preview\";s:191:\"https://www.sliderrevolution.com/templates/spotlight-hero-header-with-fluid-effect/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=spotlight-hero-header-with-fluid-effect\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:355:\"<span class=\"ttm_content\">The \"Spotlight Hero Header With Fluid Effect\" is a dynamic and visually engaging website header template, perfect for making a bold first impression. Ideal for creative agencies, product showcases, or promotional campaigns, it blends drama with functionality for a memorable user experience.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:510:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:48:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:62:\"How to Create an Innovative Typography Hero Section [Tutorial]\";s:9:\"guide_url\";s:95:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-innovative-typography-hero-section/\";s:9:\"guide_img\";s:52:\"tutorial/Spotlight-Hero-Header-With-Fluid-Effect.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:739;a:25:{s:2:\"id\";s:3:\"772\";s:5:\"title\";s:38:\"Suits Product Showcase Slider Template\";s:5:\"alias\";s:38:\"Suits-Product-Showcase-Slider-Template\";s:3:\"zip\";s:42:\"Suits-Product-Showcase-Slider-Template.zip\";s:3:\"uid\";s:32:\"f15dcfc11bbadfd8973ea38627d3ede6\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide1.jpg\";s:7:\"preview\";s:189:\"https://www.sliderrevolution.com/templates/suits-product-showcase-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=suits-product-showcase-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:494:\"<span class=\"ttm_content\">The \"Suits Product Showcase Slider Template\" is a sleek and professional slider design tailored for highlighting high-end products, especially suits. It features clean, elegant lines with a minimalist layout, ensuring the products are the focal point. This template is perfect for fashion retailers or businesses looking to showcase their products with sophistication and style, offering an intuitive and engaging user experience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:51:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:76:\"How to Create an Eye-Catching Slider for Your Ecommerce Home Page [Tutorial]\";s:9:\"guide_url\";s:109:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-eye-catching-slider-for-your-ecommerce-home-page/\";s:9:\"guide_img\";s:51:\"tutorial/Suits-Product-Showcase-Slider-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:740;a:25:{s:2:\"id\";s:3:\"773\";s:5:\"title\";s:41:\"Beards Full Width Image Carousel Template\";s:5:\"alias\";s:41:\"Beards-Full-Width-Image-Carousel-Template\";s:3:\"zip\";s:45:\"Beards-Full-Width-Image-Carousel-Template.zip\";s:3:\"uid\";s:32:\"98de06abfddd962e725202ceac02a952\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide1.jpg\";s:7:\"preview\";s:195:\"https://www.sliderrevolution.com/templates/beards-full-width-image-carousel-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=beards-full-width-image-carousel-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.6.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:637:\"<span class=\"ttm_content\">The \"Beards Full Width Image Carousel Template\" is a modern and stylish carousel design, ideal for showcasing wide-ranging images, especially focusing on beard styles and grooming products. This template features a full-width layout, giving each image maximum screen space for a more immersive visual experience. Its sleek and user-friendly interface allows for smooth navigation through the carousel, making it perfect for barber shops, grooming blogs, or lifestyle brands that want to highlight their work or products in a visually appealing and easily accessible format.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2023-12-20 16:54:46\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:81:\"Give Your Customers Different Choices with a Full-Width Image Carousel [Tutorial]\";s:9:\"guide_url\";s:114:\"https://www.sliderrevolution.com/tutorials/give-your-customers-different-choices-with-a-full-width-image-carousel/\";s:9:\"guide_img\";s:54:\"tutorial/Beards-Full-Width-Image-Carousel-Template.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:741;a:26:{s:2:\"id\";s:3:\"774\";s:5:\"title\";s:29:\"Animated Type Hero Collection\";s:5:\"alias\";s:29:\"Animated-Type-Hero-Collection\";s:3:\"zip\";s:33:\"Animated-Type-Hero-Collection.zip\";s:3:\"uid\";s:32:\"b939ae94fc4bcc2cf2aad050dc14a2f9\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide1.jpg\";s:7:\"preview\";s:171:\"https://www.sliderrevolution.com/templates/animated-type-hero-collection/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=animated-type-hero-collection\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:310:\"<span class=\"ttm_content\">Elevate your websites first impression with dynamic, animated typography. Perfect for impactful hero sections, these template is versatile, easily customizable, and designed to make your message stand out, ensuring a memorable visitor experience.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:32:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:742;a:26:{s:2:\"id\";s:3:\"775\";s:5:\"title\";s:37:\"Horoscope Slider with Zodiac Showcase\";s:5:\"alias\";s:37:\"Horoscope-Slider-with-Zodiac-Showcase\";s:3:\"zip\";s:41:\"Horoscope-Slider-with-Zodiac-Showcase.zip\";s:3:\"uid\";s:32:\"e896ce65076384fc81834b389dd90385\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide1.jpg\";s:7:\"preview\";s:187:\"https://www.sliderrevolution.com/templates/horoscope-slider-with-zodiac-showcase/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=horoscope-slider-with-zodiac-showcase\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:483:\"<span class=\"ttm_content\">The \"Horoscope Slider with Zodiac Showcase\" is an engaging Slider Revolution template that brings the magic of astrology to your website. It offers a sleek, interactive experience with beautiful visuals of all twelve zodiac signs, providing users with insightful astrological information. Perfect for adding a celestial touch to any site, this template makes exploring the zodiac both informative and visually stunning.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:545:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-thecluster-addon\\/revslider-thecluster-addon.php\",\"name\":\"Slider Revolution The Cluster AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:35:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:82:\"How to Create an Employee Spotlight Presentation Using a Website Slider [Tutorial]\";s:9:\"guide_url\";s:115:\"https://www.sliderrevolution.com/tutorials/how-to-create-an-employee-spotlight-presentation-using-a-website-slider/\";s:9:\"guide_img\";s:50:\"tutorial/Horoscope-Slider-with-Zodiac-Showcase.png\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:743;a:26:{s:2:\"id\";s:3:\"776\";s:5:\"title\";s:32:\"Urban Oven Pizza Slider Template\";s:5:\"alias\";s:32:\"Urban-Oven-Pizza-Slider-Template\";s:3:\"zip\";s:36:\"Urban-Oven-Pizza-Slider-Template.zip\";s:3:\"uid\";s:32:\"630e123eb690fcf2f9a8807f64e24855\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide1.jpg\";s:7:\"preview\";s:177:\"https://www.sliderrevolution.com/templates/urban-oven-pizza-slider-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=urban-oven-pizza-slider-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:514:\"<span class=\"ttm_content\">Elevate your pizzerias online presence with the \"Urban Oven Pizza Slider\", a modern and sleek website slider designed to showcase the irresistible appeal of freshly baked pizzas. This template captivates with vivid imagery and smooth transitions, highlighting your culinary creations and enticing food enthusiasts with every slide. Perfect for any food-oriented website looking to engage and attract customers with a taste of urban dining excellence.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:189:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:43:14\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:744;a:29:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:42:\"Modern Web Agency Website Template Package\";s:5:\"alias\";s:42:\"modern-web-agency-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:42:\"modern-web-agency-website-template-package\";s:3:\"img\";s:47:\"packages/Modern-Web-Agency-Website-Template.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:46:51\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:745;a:29:{s:2:\"id\";s:3:\"778\";s:5:\"title\";s:22:\"Modern Web Agency Hero\";s:5:\"alias\";s:22:\"Modern-Web-Agency-Hero\";s:3:\"zip\";s:32:\"packs/Modern-Web-Agency-Hero.zip\";s:3:\"uid\";s:32:\"c7c212ffd591dc749821824acfed9b1e\";s:3:\"img\";s:33:\"Modern-Web-Agency-Hero/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:181:\"[{\"path\":\"revslider-fluiddynamics-addon\\/revslider-fluiddynamics-addon.php\",\"name\":\"Fluid Dynamics AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:50:46\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:746;a:29:{s:2:\"id\";s:3:\"779\";s:5:\"title\";s:24:\"Modern Web Agency Brands\";s:5:\"alias\";s:24:\"Modern-Web-Agency-Brands\";s:3:\"zip\";s:34:\"packs/Modern-Web-Agency-Brands.zip\";s:3:\"uid\";s:32:\"1264d8fefc943dbcc791458e6cee7ce8\";s:3:\"img\";s:35:\"Modern-Web-Agency-Brands/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 14:53:18\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:747;a:29:{s:2:\"id\";s:3:\"780\";s:5:\"title\";s:23:\"Modern Web Agency About\";s:5:\"alias\";s:23:\"Modern-Web-Agency-About\";s:3:\"zip\";s:33:\"packs/Modern-Web-Agency-About.zip\";s:3:\"uid\";s:32:\"28af788973472a5b8d1d9f4bc9200667\";s:3:\"img\";s:34:\"Modern-Web-Agency-About/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 14:55:45\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:748;a:29:{s:2:\"id\";s:3:\"781\";s:5:\"title\";s:26:\"Modern Web Agency Projects\";s:5:\"alias\";s:26:\"Modern-Web-Agency-Projects\";s:3:\"zip\";s:36:\"packs/Modern-Web-Agency-Projects.zip\";s:3:\"uid\";s:32:\"ff5c528962fcbff1c39184d538a32a6a\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 14:57:15\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:749;a:29:{s:2:\"id\";s:3:\"782\";s:5:\"title\";s:32:\"Modern Web Agency Title Projects\";s:5:\"alias\";s:32:\"Modern-Web-Agency-Title-Projects\";s:3:\"zip\";s:42:\"packs/Modern-Web-Agency-Title-Projects.zip\";s:3:\"uid\";s:32:\"ff9fe269ad43f301274963920944b903\";s:3:\"img\";s:43:\"Modern-Web-Agency-Title-Projects/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:00:22\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:750;a:29:{s:2:\"id\";s:3:\"783\";s:5:\"title\";s:26:\"Modern Web Agency Services\";s:5:\"alias\";s:26:\"Modern-Web-Agency-Services\";s:3:\"zip\";s:36:\"packs/Modern-Web-Agency-Services.zip\";s:3:\"uid\";s:32:\"f307d3db154e238ca0de95dac9401963\";s:3:\"img\";s:37:\"Modern-Web-Agency-Services/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2024-04-05 15:02:05\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:751;a:29:{s:2:\"id\";s:3:\"784\";s:5:\"title\";s:25:\"Modern Web Agency Contact\";s:5:\"alias\";s:25:\"Modern-Web-Agency-Contact\";s:3:\"zip\";s:35:\"packs/Modern-Web-Agency-Contact.zip\";s:3:\"uid\";s:32:\"ffba037192afa45656e9f4f7bc425b3c\";s:3:\"img\";s:36:\"Modern-Web-Agency-Contact/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:03:27\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:752;a:29:{s:2:\"id\";s:3:\"785\";s:5:\"title\";s:23:\"Modern Agency Project 1\";s:5:\"alias\";s:23:\"Modern-Agency-Project-1\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-1.zip\";s:3:\"uid\";s:32:\"a894e6ba97e8176be1e66abebcaaf986\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:04:46\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:753;a:28:{s:2:\"id\";s:3:\"786\";s:5:\"title\";s:23:\"Modern Agency Project 2\";s:5:\"alias\";s:23:\"Modern-Agency-Project-2\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-2.zip\";s:3:\"uid\";s:32:\"a6a6f6cdd82579808bbff580261adfdf\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:08:30\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:754;a:29:{s:2:\"id\";s:3:\"787\";s:5:\"title\";s:23:\"Modern Agency Project 3\";s:5:\"alias\";s:23:\"Modern-Agency-Project-3\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-3.zip\";s:3:\"uid\";s:32:\"77b68af53a2d6ed705e8118334144fa8\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:10:19\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:755;a:29:{s:2:\"id\";s:3:\"788\";s:5:\"title\";s:23:\"Modern Agency Project 4\";s:5:\"alias\";s:23:\"Modern-Agency-Project-4\";s:3:\"zip\";s:33:\"packs/Modern-Agency-Project-4.zip\";s:3:\"uid\";s:32:\"347d38dd2ddf98497ef7a621b0d6ec1f\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide1.jpg\";s:7:\"preview\";s:181:\"https://www.sliderrevolution.com/templates/modern-web-agency-website-template/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=modern-web-agency-website-template\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.7.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:708:\"<span class=\"ttm_content\">Modern Web Agency Website Template is a one-page website template designed for contemporary web agencies seeking a blend of elegance and functionality. This minimalist yet sophisticated template features a dynamic full-screen hero section, interactive elements, and smooth scrolling navigation, ensuring a captivating user experience. Responsive and SEO-optimized, it adapts beautifully across devices while enhancing your online visibility. Ideal for showcasing services and projects, it combines ease of customization with fast loading times, making it a perfect choice for agencies looking to leave a lasting impression in the digital world.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:0:\"\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2024-04-05 15:11:56\";s:7:\"package\";s:42:\"Modern Web Agency Website Template Package\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:11:\"guide_title\";s:0:\"\";s:9:\"guide_url\";s:0:\"\";s:9:\"guide_img\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"66\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:737:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:19:\"Photographer-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";}}s:27:\"Photographer-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";}}s:21:\"Photographer-Showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";}}s:22:\"Photographer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";}}s:21:\"Photographer-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";}}s:19:\"Photographer-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";}}s:18:\"Photographer-Modal\";a:1:{i:0;a:2:{s:5:\"title\";s:8:\"Slider 1\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}s:25:\"testimonial-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";}}s:22:\"testimonial-carousel-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide4.jpg\";}}s:22:\"testimonial-carousel-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide5.jpg\";}}s:22:\"testimonial-carousel-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide3.jpg\";}}s:22:\"testimonial-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";}}s:22:\"testimonial-carousel-5\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide4.jpg\";}}s:9:\"deep-dive\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";}}s:22:\"particle-wave-showcase\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"particle-wave-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"particle-wave-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"particle-wave-showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"particle-wave-showcase/slide5.jpg\";}}s:17:\"video-hero-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";}}s:28:\"solar-system-showcase-slider\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide9.jpg\";}}s:26:\"Optic-shop-showcase-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide5.jpg\";}}s:24:\"charts-template-showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";}}s:31:\"fashion-website-slider-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";}}s:22:\"fashion-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fashion-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"fashion-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"fashion-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"fashion-website-slider/slide5.jpg\";}}s:28:\"fashion-website-slider-modal\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide5.jpg\";}}s:24:\"furniture-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"furniture-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"furniture-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"furniture-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"furniture-website-slider/slide5.jpg\";}}s:26:\"fitness-gym-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide5.jpg\";}}s:35:\"ai--robotics-webside-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";}}s:30:\"ai-and-robotics-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide4.jpg\";}}s:14:\"ai-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";}}s:33:\"minimal-typography-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide4.jpg\";}}s:19:\"404-page-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"404-page-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"404-page-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"404-page-collection/slide4.jpg\";}}s:21:\"ecommerce-sale-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide4.jpg\";}}s:19:\"fashion-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"fashion-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"fashion-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"fashion-shop-slider/slide4.jpg\";}}s:29:\"lingerie-store-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide5.jpg\";}}s:28:\"beach-events-hero-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"beach-events-hero-collection/slide4.jpg\";}}s:41:\"creative-portfolio-website-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:54:\"packages/creative-portfolio-website-slider-package.jpg\";}}s:30:\"creative-portfolio-main-slider\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:41:\"creative-portfolio-main-slider/slide8.jpg\";}}s:28:\"creative-portfolio-project-1\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-1/slide5.jpg\";}}s:28:\"creative-portfolio-project-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-2/slide5.jpg\";}}s:28:\"creative-portfolio-project-3\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-3/slide5.jpg\";}}s:28:\"creative-portfolio-project-4\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-4/slide5.jpg\";}}s:28:\"creative-portfolio-project-5\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-5/slide5.jpg\";}}s:28:\"creative-portfolio-project-6\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-6/slide5.jpg\";}}s:28:\"creative-portfolio-project-7\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"creative-portfolio-project-7/slide5.jpg\";}}s:19:\"ai-particle-cluster\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"ai-particle-cluster/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"ai-particle-cluster/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"ai-particle-cluster/slide3.jpg\";}}s:24:\"artistic-parallax-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"artistic-parallax-slider/slide4.jpg\";}}s:23:\"magazine-content-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"magazine-content-slider/slide1.jpg\";}}s:30:\"magazine-content-slider-static\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"magazine-content-slider-static/slide4.jpg\";}}s:24:\"Masonry-Gallery-Carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Masonry-Gallery-Carousel/slide3.jpg\";}}s:21:\"neon-wordpress-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"neon-wordpress-slider/slide5.jpg\";}}s:27:\"Restaurant-One-Page-Website\";a:11:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:38:\"Restaurant-One-Page-Website/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:39:\"Restaurant-One-Page-Website/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:39:\"Restaurant-One-Page-Website/slide11.jpg\";}}s:18:\"woocommerce-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"woocommerce-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"woocommerce-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"woocommerce-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"woocommerce-slider/slide4.jpg\";}}s:25:\"woocommerce-slider-static\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"woocommerce-slider-static/slide4.jpg\";}}s:21:\"wordpress-post-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"wordpress-post-slider/slide1.jpg\";}}s:28:\"WordPress-Post-Slider-Static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"WordPress-Post-Slider-Static/slide6.jpg\";}}s:22:\"wordpress-video-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wordpress-video-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"wordpress-video-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"wordpress-video-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"wordpress-video-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"wordpress-video-slider/slide5.jpg\";}}s:37:\"architecture-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/architecture-website-thumb.jpg\";}}s:17:\"architecture-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"architecture-menu/slide1.jpg\";}}s:26:\"architecture-header-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"architecture-header-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"architecture-header-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"architecture-header-slider/slide3.jpg\";}}s:23:\"architecture-text-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"architecture-text-block/slide1.jpg\";}}s:18:\"architecture-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"architecture-about/slide1.jpg\";}}s:26:\"architecture-process-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"architecture-process-title/slide1.jpg\";}}s:20:\"architecture-process\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"architecture-process/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"architecture-process/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"architecture-process/slide3.jpg\";}}s:22:\"architecture-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"architecture-portfolio/slide1.jpg\";}}s:28:\"architecture-portfolio-modal\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"architecture-portfolio-modal/slide4.jpg\";}}s:20:\"architecture-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"architecture-contact/slide1.jpg\";}}s:23:\"image-comparison-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"image-comparison-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"image-comparison-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"image-comparison-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"image-comparison-slider/slide4.jpg\";}}s:37:\"wedding-photo-slider-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/Wedding-Photo-Slider-Package.jpg\";}}s:20:\"wedding-photo-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wedding-photo-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"wedding-photo-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"wedding-photo-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"wedding-photo-slider/slide4.jpg\";}}s:26:\"wedding-photo-slider-modal\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"wedding-photo-slider-modal/slide4.jpg\";}}s:24:\"destinations-card-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"destinations-card-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"destinations-card-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"destinations-card-slider/slide3.jpg\";}}s:21:\"knives-product-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"knives-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"knives-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"knives-product-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"knives-product-slider/slide4.jpg\";}}s:16:\"tiny-slider-dark\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"tiny-slider-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"tiny-slider-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"tiny-slider-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"tiny-slider-dark/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"tiny-slider-dark/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"tiny-slider-dark/slide6.jpg\";}}s:17:\"tiny-slider-light\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tiny-slider-light/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"tiny-slider-light/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"tiny-slider-light/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"tiny-slider-light/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"tiny-slider-light/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"tiny-slider-light/slide6.jpg\";}}s:24:\"pet-store-product-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"pet-store-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"pet-store-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"pet-store-product-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"pet-store-product-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"pet-store-product-slider/slide5.jpg\";}}s:18:\"material-ui-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"material-ui-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"material-ui-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"material-ui-slider/slide3.jpg\";}}s:19:\"happy-holidays-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"happy-holidays-hero/slide1.jpg\";}}s:36:\"space-and-sci-fi-presentation-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:47:\"space-and-sci-fi-presentation-slider/slide4.png\";}}s:21:\"Claymorphism-Carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"Claymorphism-Carousel/slide4.jpg\";}}s:24:\"404-page-hero-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"404-page-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"404-page-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"404-page-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"404-page-hero-collection/slide4.jpg\";}}s:32:\"furniture-store-isometric-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"furniture-store-isometric-slider/slide4.jpg\";}}s:36:\"woodworking-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/Woodworking-Website-Template.jpg\";}}s:22:\"wood-art-one-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wood-art-one-page-hero/slide1.jpg\";}}s:23:\"wood-art-one-page-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"wood-art-one-page-about/slide1.jpg\";}}s:22:\"wood-art-one-page-work\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"wood-art-one-page-work/slide5.jpg\";}}s:30:\"wood-art-one-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"wood-art-one-page-testimonials/slide1.jpg\";}}s:24:\"wood-art-one-page-events\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"wood-art-one-page-events/slide1.jpg\";}}s:24:\"wood-art-one-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"wood-art-one-page-footer/slide1.jpg\";}}s:26:\"wood-art-one-page-gallery1\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery1/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery2\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery2/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery3/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery4\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery4/slide3.jpg\";}}s:26:\"wood-art-one-page-gallery5\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"wood-art-one-page-gallery5/slide3.jpg\";}}s:35:\"Hero-Template-With-Cursor-Animation\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:46:\"Hero-Template-With-Cursor-Animation/slide1.jpg\";}}s:28:\"futuristic-hairstyles-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"futuristic-hairstyles-slider/slide5.jpg\";}}s:28:\"instagram-gallery-carousel-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-1/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-2/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-3/slide1.jpg\";}}s:28:\"instagram-gallery-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"instagram-gallery-carousel-4/slide1.jpg\";}}s:31:\"instagram-gallery-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/Instagram-Gallery-Carousel.jpg\";}}s:29:\"Storytelling-Website-Template\";a:16:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:40:\"Storytelling-Website-Template/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide12.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide13.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide14.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide15.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:41:\"Storytelling-Website-Template/slide16.jpg\";}}s:32:\"generative-ai-wordpress-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/Generative-AI-Wordpress-Template.jpg\";}}s:9:\"G-AI-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"G-AI-Hero/slide1.jpg\";}}s:10:\"G-AI-Intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Intro/slide1.jpg\";}}s:10:\"G-AI-Logos\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Logos/slide1.jpg\";}}s:11:\"G-AI-Images\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"G-AI-Images/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"G-AI-Images/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"G-AI-Images/slide3.jpg\";}}s:9:\"G-AI-Copy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"G-AI-Copy/slide1.jpg\";}}s:10:\"G-AI-Tools\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Tools/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"G-AI-Tools/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"G-AI-Tools/slide3.jpg\";}}s:10:\"G-AI-Cases\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"G-AI-Cases/slide1.jpg\";}}s:18:\"G-AI-Gallery-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"G-AI-Gallery-Title/slide1.jpg\";}}s:12:\"G-AI-Gallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"G-AI-Gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"G-AI-Gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"G-AI-Gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"G-AI-Gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"G-AI-Gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"G-AI-Gallery/slide6.jpg\";}}s:17:\"G-AI-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"G-AI-Testimonials/slide3.jpg\";}}s:11:\"G-AI-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"G-AI-Footer/slide1.jpg\";}}s:23:\"visual-design-one-pager\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"packages/Visual-Design-One-Pager.jpg\";}}s:20:\"visual-designer-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"visual-designer-menu/slide1.jpg\";}}s:22:\"visual-designer-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"visual-designer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"visual-designer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"visual-designer-slider/slide3.jpg\";}}s:25:\"Visual-Designer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Visual-Designer-Portfolio/slide1.jpg\";}}s:21:\"Visual-Designer-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Visual-Designer-About/slide1.jpg\";}}s:22:\"visual-designer-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"visual-designer-footer/slide1.jpg\";}}s:27:\"Visual-Designer-Detail-View\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Visual-Designer-Detail-View/slide7.jpg\";}}s:24:\"online-watch-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"online-watch-shop-slider/slide4.jpg\";}}s:31:\"Brewery-Website-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Brewery-Website-Slider-Template/slide4.jpg\";}}s:40:\"Hero-Slider-with-Midjourney-Image-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Hero-Slider-with-Midjourney-Image-Effect/slide1.jpg\";}}s:31:\"Highlight-Hero-Section-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Highlight-Hero-Section-Template/slide4.jpg\";}}s:36:\"Samurai-Fullscreen-Carousel-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:47:\"Samurai-Fullscreen-Carousel-Template/slide4.jpg\";}}s:32:\"surf-scroll-based-story-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/surf-scroll-based-story-template.jpg\";}}s:18:\"Surf-Template-Logo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Surf-Template-Logo/slide1.jpg\";}}s:15:\"Surf-Template-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-1/slide1.jpg\";}}s:15:\"Surf-Template-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-2/slide1.jpg\";}}s:15:\"Surf-Template-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-3/slide1.jpg\";}}s:15:\"Surf-Template-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Surf-Template-4/slide1.jpg\";}}s:33:\"50-50-Split-Screen-Website-Design\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"50-50-Split-Screen-Website-Design/slide4.jpg\";}}s:33:\"Food-Presentation-Template-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"Food-Presentation-Template-Slider/slide4.jpg\";}}s:38:\"FutureSight-Digital-Marketing-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:49:\"FutureSight-Digital-Marketing-Template/slide3.jpg\";}}s:40:\"Starry-Night-Parallax-Zoom-Effect-Slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:51:\"Starry-Night-Parallax-Zoom-Effect-Slider/slide4.jpg\";}}s:15:\"beyond-the-void\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"beyond-the-void/slide1.jpg\";}}s:33:\"Static-Ecommerce-Product-Carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"Static-Ecommerce-Product-Carousel/slide4.jpg\";}}s:30:\"woo-ecommerce-product-carousel\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"woo-ecommerce-product-carousel/slide1.jpg\";}}s:31:\"Serenity-Hero-With-Focus-Effect\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"Serenity-Hero-With-Focus-Effect/slide5.jpg\";}}s:29:\"OakGrove-Wine-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"OakGrove-Wine-Slider-Template/slide4.jpg\";}}s:32:\"Geometric-Slider-Design-Template\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"Geometric-Slider-Design-Template/slide3.jpg\";}}s:43:\"Chocolate-Bar-Product-Presentation-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:54:\"Chocolate-Bar-Product-Presentation-Template/slide4.jpg\";}}s:30:\"Fluid-Dynamics-Effect-Showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"Fluid-Dynamics-Effect-Showcase/slide4.jpg\";}}s:39:\"Spotlight-Hero-Header-With-Fluid-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:50:\"Spotlight-Hero-Header-With-Fluid-Effect/slide1.jpg\";}}s:38:\"Suits-Product-Showcase-Slider-Template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:49:\"Suits-Product-Showcase-Slider-Template/slide4.jpg\";}}s:41:\"Beards-Full-Width-Image-Carousel-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:52:\"Beards-Full-Width-Image-Carousel-Template/slide5.jpg\";}}s:29:\"Animated-Type-Hero-Collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"Animated-Type-Hero-Collection/slide3.jpg\";}}s:37:\"Horoscope-Slider-with-Zodiac-Showcase\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:48:\"Horoscope-Slider-with-Zodiac-Showcase/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:49:\"Horoscope-Slider-with-Zodiac-Showcase/slide12.jpg\";}}s:32:\"Urban-Oven-Pizza-Slider-Template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"Urban-Oven-Pizza-Slider-Template/slide5.jpg\";}}s:42:\"modern-web-agency-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:47:\"packages/Modern-Web-Agency-Website-Template.jpg\";}}s:22:\"Modern-Web-Agency-Hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Modern-Web-Agency-Hero/slide1.jpg\";}}s:24:\"Modern-Web-Agency-Brands\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Modern-Web-Agency-Brands/slide1.jpg\";}}s:23:\"Modern-Web-Agency-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Web-Agency-About/slide1.jpg\";}}s:26:\"Modern-Web-Agency-Projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Modern-Web-Agency-Projects/slide4.jpg\";}}s:32:\"Modern-Web-Agency-Title-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"Modern-Web-Agency-Title-Projects/slide1.jpg\";}}s:26:\"Modern-Web-Agency-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Modern-Web-Agency-Services/slide1.jpg\";}}s:25:\"Modern-Web-Agency-Contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"Modern-Web-Agency-Contact/slide1.jpg\";}}s:23:\"Modern-Agency-Project-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-1/slide4.jpg\";}}s:23:\"Modern-Agency-Project-2\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-2/slide4.jpg\";}}s:23:\"Modern-Agency-Project-3\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-3/slide4.jpg\";}}s:23:\"Modern-Agency-Project-4\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"Modern-Agency-Project-4/slide4.jpg\";}}}}', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(205, 'rs-templates-counter', '5', 'no'),
(206, 'revslider_table_version', '1.0.8', 'yes'),
(207, 'bookit_version', '2.3.8', 'yes'),
(208, 'bookit_db_version', '2.2.4', 'yes'),
(209, 'bookit_settings', 'a:17:{s:12:\"booking_type\";s:10:\"registered\";s:18:\"hide_header_titles\";b:0;s:8:\"currency\";s:3:\"usd\";s:15:\"currency_symbol\";s:1:\"$\";s:17:\"currency_position\";s:4:\"left\";s:19:\"thousands_separator\";s:1:\",\";s:18:\"decimals_separator\";s:1:\".\";s:15:\"decimals_number\";i:2;s:21:\"custom_colors_enabled\";b:0;s:13:\"custom_colors\";a:5:{s:10:\"base_color\";s:7:\"#006666\";s:13:\"base_bg_color\";s:7:\"#f0f8f8\";s:15:\"highlight_color\";s:7:\"#ffd400\";s:11:\"white_color\";s:7:\"#ffffff\";s:10:\"dark_color\";s:7:\"#272727\";}s:8:\"payments\";a:4:{s:7:\"locally\";a:1:{s:7:\"enabled\";b:1;}s:6:\"paypal\";a:1:{s:7:\"enabled\";b:0;}s:6:\"stripe\";a:1:{s:7:\"enabled\";b:0;}s:11:\"woocommerce\";a:1:{s:7:\"enabled\";b:0;}}s:6:\"emails\";a:10:{s:28:\"appointment_created_customer\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:61:\"Your Appointment Request #[appointment_id] successfully sent!\";s:4:\"body\";s:294:\"Hi, [customer_name].\nYour Appointment Request successfully sent!\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:25:\"appointment_created_admin\";a:4:{s:7:\"enabled\";b:1;s:2:\"to\";s:15:\"[admin],[staff]\";s:7:\"subject\";s:63:\"New Appointment Request by [customer_name] - #[appointment_id]!\";s:4:\"body\";s:299:\"Name: [customer_name]\nEmail: [customer_email]\nPhone: [customer_phone]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:28:\"appointment_updated_customer\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:53:\"Your Appointment #[appointment_id] has been modified!\";s:4:\"body\";s:298:\"Hi, [customer_name].\nYour Appointment Request successfully modified!\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:25:\"appointment_updated_admin\";a:4:{s:7:\"enabled\";b:1;s:2:\"to\";s:15:\"[admin],[staff]\";s:7:\"subject\";s:39:\"Appointment #[appointment_id] modified!\";s:4:\"body\";s:299:\"Name: [customer_name]\nEmail: [customer_email]\nPhone: [customer_phone]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:25:\"payment_complete_customer\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:56:\"Your Payment for Appointment #[appointment_id] received!\";s:4:\"body\";s:299:\"Hi, [customer_name].\nYour Payment from [payment_method] was received!\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:22:\"payment_complete_admin\";a:4:{s:7:\"enabled\";b:1;s:2:\"to\";s:7:\"[admin]\";s:7:\"subject\";s:76:\"You received Payment from [customer_name] for Appointment #[appointment_id]!\";s:4:\"body\";s:343:\"You received Payment from [payment_method]!\nName: [customer_name]\nEmail: [customer_email]\nPhone: [customer_phone]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:26:\"appointment_status_changed\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:52:\"Your Appointment Request #[appointment_id] [status]!\";s:4:\"body\";s:295:\"Hi, [customer_name].\nYour Appointment #[appointment_id] [status]!\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:28:\"appointment_deleted_customer\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:52:\"Your Appointment #[appointment_id] has been deleted!\";s:4:\"body\";s:305:\"Hi, [customer_name].\nYour Appointment Request was deleted!\nReason: [reason]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:25:\"appointment_deleted_staff\";a:3:{s:7:\"enabled\";b:1;s:7:\"subject\";s:38:\"Appointment #[appointment_id] deleted!\";s:4:\"body\";s:316:\"Name: [customer_name]\nEmail: [customer_email]\nPhone: [customer_phone]\nReason: [reason]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}s:32:\"appointment_status_changed_admin\";a:4:{s:7:\"enabled\";b:1;s:2:\"to\";s:15:\"[admin],[staff]\";s:7:\"subject\";s:52:\"Your Appointment Request #[appointment_id] [status]!\";s:4:\"body\";s:299:\"Name: [customer_name]\nEmail: [customer_email]\nPhone: [customer_phone]\nService: [service_title]\nStaff: [staff_name]\nStaff phone: [staff_phone]\nStart time: [start_time]\nAppointment day: [appointment_day]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]\";}}s:18:\"time_slot_duration\";i:15;s:19:\"clean_all_on_delete\";b:0;s:11:\"sender_name\";s:0:\"\";s:12:\"sender_email\";s:0:\"\";s:13:\"calendar_view\";s:7:\"default\";}', 'yes'),
(210, 'wpcf7', 'a:2:{s:7:\"version\";s:5:\"5.4.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1617626469;s:7:\"version\";s:3:\"5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}', 'yes'),
(211, 'ccb_version', '2.1.9', 'yes'),
(212, 'calc_db_updates', '2.1.9', 'yes'),
(213, 'ccb_installed', '2021-04-05 12:41:09', 'yes'),
(214, 'ccb_canceled', 'no', 'yes'),
(217, 'eroom_installed', '1617626469', 'yes'),
(218, 'sbi_statuses', 'a:4:{s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:13:\"first_install\";i:1617626490;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}s:23:\"rating_notice_dismissed\";i:1618899568;}', 'no'),
(219, 'sbi_usage_tracking', 'a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}', 'yes'),
(220, 'tp_twitter_global_notification', '1', 'yes'),
(221, 'action_scheduler_hybrid_store_demarkation', '7', 'yes'),
(222, 'schema-ActionScheduler_StoreSchema', '3.0.1617626469', 'yes'),
(223, 'schema-ActionScheduler_LoggerSchema', '2.0.1617626469', 'yes'),
(226, 'woocommerce_schema_version', '430', 'yes'),
(227, 'woocommerce_store_address', '', 'yes'),
(228, 'woocommerce_store_address_2', '', 'yes'),
(229, 'woocommerce_store_city', '', 'yes'),
(230, 'woocommerce_default_country', 'GB', 'yes'),
(231, 'woocommerce_store_postcode', '', 'yes'),
(232, 'woocommerce_allowed_countries', 'all', 'yes'),
(233, 'woocommerce_all_except_countries', '', 'yes'),
(234, 'woocommerce_specific_allowed_countries', '', 'yes'),
(235, 'woocommerce_ship_to_countries', '', 'yes'),
(236, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(237, 'woocommerce_default_customer_address', 'base', 'yes'),
(238, 'woocommerce_calc_taxes', 'no', 'yes'),
(239, 'woocommerce_enable_coupons', 'yes', 'yes'),
(240, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(241, 'woocommerce_currency', 'GBP', 'yes'),
(242, 'woocommerce_currency_pos', 'left', 'yes'),
(243, 'woocommerce_price_thousand_sep', ',', 'yes'),
(244, 'woocommerce_price_decimal_sep', '.', 'yes'),
(245, 'woocommerce_price_num_decimals', '2', 'yes'),
(246, 'woocommerce_shop_page_id', '834', 'yes'),
(247, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(248, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(249, 'woocommerce_placeholder_image', '7', 'yes'),
(250, 'woocommerce_weight_unit', 'kg', 'yes'),
(251, 'woocommerce_dimension_unit', 'cm', 'yes'),
(252, 'woocommerce_enable_reviews', 'yes', 'yes'),
(253, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(254, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(255, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(256, 'woocommerce_review_rating_required', 'yes', 'no'),
(257, 'woocommerce_manage_stock', 'yes', 'yes'),
(258, 'woocommerce_hold_stock_minutes', '60', 'no'),
(259, 'woocommerce_notify_low_stock', 'yes', 'no'),
(260, 'woocommerce_notify_no_stock', 'yes', 'no'),
(261, 'woocommerce_stock_email_recipient', 'design2.livasys@gmail.com', 'no'),
(262, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(263, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(264, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(265, 'woocommerce_stock_format', '', 'yes'),
(266, 'woocommerce_file_download_method', 'force', 'no'),
(267, 'woocommerce_downloads_require_login', 'no', 'no'),
(268, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(269, 'woocommerce_downloads_add_hash_to_filename', 'yes', 'yes'),
(270, 'woocommerce_prices_include_tax', 'no', 'yes'),
(271, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(272, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(273, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(274, 'woocommerce_tax_classes', '', 'yes'),
(275, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(276, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(277, 'woocommerce_price_display_suffix', '', 'yes'),
(278, 'woocommerce_tax_total_display', 'itemized', 'no'),
(279, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(280, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(281, 'woocommerce_ship_to_destination', 'billing', 'no'),
(282, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(283, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(284, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(285, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(286, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(287, 'woocommerce_registration_generate_username', 'yes', 'no'),
(288, 'woocommerce_registration_generate_password', 'yes', 'no'),
(289, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(290, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(291, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(292, 'woocommerce_registration_privacy_policy_text', 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].', 'yes'),
(293, 'woocommerce_checkout_privacy_policy_text', 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].', 'yes'),
(294, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(295, 'woocommerce_trash_pending_orders', '', 'no'),
(296, 'woocommerce_trash_failed_orders', '', 'no'),
(297, 'woocommerce_trash_cancelled_orders', '', 'no'),
(298, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(299, 'woocommerce_email_from_name', 'Qual Stream', 'no'),
(300, 'woocommerce_email_from_address', 'design2.livasys@gmail.com', 'no'),
(301, 'woocommerce_email_header_image', '', 'no'),
(302, 'woocommerce_email_footer_text', '{site_title} &mdash; Built with {WooCommerce}', 'no'),
(303, 'woocommerce_email_base_color', '#96588a', 'no'),
(304, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(305, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(306, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(307, 'woocommerce_merchant_email_notifications', 'no', 'no'),
(308, 'woocommerce_cart_page_id', '835', 'no'),
(309, 'woocommerce_checkout_page_id', '836', 'no'),
(310, 'woocommerce_myaccount_page_id', '837', 'no'),
(311, 'woocommerce_terms_page_id', '', 'no'),
(312, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(313, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(314, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(315, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(316, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(317, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(318, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(319, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(320, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(321, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(322, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(323, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(324, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(325, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(326, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(327, 'woocommerce_api_enabled', 'no', 'yes'),
(328, 'woocommerce_allow_tracking', 'no', 'no'),
(329, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(330, 'woocommerce_single_image_width', '600', 'yes'),
(331, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(332, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(333, 'woocommerce_demo_store', 'no', 'no'),
(334, 'woocommerce_permalinks', 'a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}', 'yes'),
(335, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(336, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(339, 'default_product_cat', '15', 'yes'),
(342, 'woocommerce_version', '5.4.4', 'yes'),
(343, 'woocommerce_db_version', '5.4.2', 'yes'),
(347, '_transient_jetpack_autoloader_plugin_paths', 'a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}', 'yes'),
(348, 'action_scheduler_lock_async-request-runner', '1712718357', 'yes'),
(349, 'woocommerce_admin_notices', 'a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}', 'yes'),
(350, 'revslider_update_version', '6.2.0', 'yes'),
(351, 'elementor_version', '3.1.4', 'yes'),
(352, 'elementor_install_history', 'a:1:{s:5:\"3.1.4\";i:1617626489;}', 'yes'),
(353, 'woocommerce_maxmind_geolocation_settings', 'a:1:{s:15:\"database_prefix\";s:32:\"4aNJcYbLaIYfynA4Vh1UPw0R9WEltMt6\";}', 'yes'),
(354, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(355, 'widget_tp_widget_recent_tweets', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(356, 'widget_rev-slider-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(357, 'widget_socials', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(358, 'widget_contacts', 'a:2:{i:2;a:7:{s:5:\"title\";s:7:\"Contact\";s:7:\"address\";s:48:\"SMR Towers, Road No 3, Banajarahills, Hyderabad.\";s:6:\"regime\";s:0:\"\";s:5:\"phone\";s:16:\"+91 964 247 5702\";s:3:\"fax\";s:0:\"\";s:5:\"email\";s:19:\"info@qualstream.net\";s:7:\"email_2\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(359, 'widget_woocommerce_widget_cart', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(360, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(361, 'widget_woocommerce_layered_nav', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(362, 'widget_woocommerce_price_filter', 'a:2:{i:2;a:1:{s:5:\"title\";s:15:\"filter by price\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(363, 'widget_woocommerce_product_categories', 'a:2:{i:2;a:7:{s:5:\"title\";s:15:\"shop categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(364, 'widget_woocommerce_product_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(365, 'widget_woocommerce_product_tag_cloud', 'a:2:{i:2;a:1:{s:5:\"title\";s:12:\"product tags\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(366, 'widget_woocommerce_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(367, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(368, 'widget_woocommerce_top_rated_products', 'a:2:{i:2;a:2:{s:5:\"title\";s:18:\"top rated products\";s:6:\"number\";i:3;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(369, 'widget_woocommerce_recent_reviews', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(370, 'widget_woocommerce_rating_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(371, 'widget_instagram-feed-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(372, 'widget_bcn_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(376, 'woocommerce_admin_install_timestamp', '1617626490', 'yes'),
(379, 'sbi_usage_tracking_config', 'a:6:{s:3:\"day\";i:3;s:4:\"hour\";i:21;s:6:\"minute\";i:3;s:6:\"second\";i:36;s:6:\"offset\";i:335016;s:8:\"initsend\";i:1617829416;}', 'yes'),
(380, '_transient_consulting_get_stocks_indexes_symbols', 'a:50:{i:0;a:3:{s:5:\"label\";s:3:\"BBC\";s:5:\"value\";s:3:\"BBC\";s:11:\"description\";s:42:\"Virtus LifeSci Biotech Clinical Trials ETF\";}i:1;a:3:{s:5:\"label\";s:4:\"^YHQ\";s:5:\"value\";s:4:\"^YHQ\";s:11:\"description\";s:11:\"Yahoo! Inc.\";}i:2;a:3:{s:5:\"label\";s:4:\"ES=F\";s:5:\"value\";s:4:\"ES=F\";s:11:\"description\";s:28:\"E-mini S&P 500 Index Futures\";}i:3;a:3:{s:5:\"label\";s:3:\"RUT\";s:5:\"value\";s:3:\"RUT\";s:11:\"description\";s:15:\"US SmallCap 200\";}i:4;a:3:{s:5:\"label\";s:4:\"GOOG\";s:5:\"value\";s:4:\"GOOG\";s:11:\"description\";s:13:\"Alphabet Inc.\";}i:5;a:3:{s:5:\"label\";s:2:\"FB\";s:5:\"value\";s:2:\"FB\";s:11:\"description\";s:14:\"Facebook, Inc.\";}i:6;a:3:{s:5:\"label\";s:4:\"AAPL\";s:5:\"value\";s:4:\"AAPL\";s:11:\"description\";s:10:\"Apple Inc.\";}i:7;a:3:{s:5:\"label\";s:4:\"TSLA\";s:5:\"value\";s:4:\"TSLA\";s:11:\"description\";s:11:\"Tesla, Inc.\";}i:8;a:3:{s:5:\"label\";s:4:\"BABA\";s:5:\"value\";s:4:\"BABA\";s:11:\"description\";s:29:\"Alibaba Group Holding Limited\";}i:9;a:3:{s:5:\"label\";s:4:\"NFLX\";s:5:\"value\";s:4:\"NFLX\";s:11:\"description\";s:13:\"Netflix, Inc.\";}i:10;a:3:{s:5:\"label\";s:4:\"TWTR\";s:5:\"value\";s:4:\"TWTR\";s:11:\"description\";s:13:\"Twitter, Inc.\";}i:11;a:3:{s:5:\"label\";s:4:\"GPRO\";s:5:\"value\";s:4:\"GPRO\";s:11:\"description\";s:11:\"GoPro, Inc.\";}i:12;a:3:{s:5:\"label\";s:4:\"NQ=F\";s:5:\"value\";s:4:\"NQ=F\";s:11:\"description\";s:31:\"E-mini Nasdaq 100 Index Futures\";}i:13;a:3:{s:5:\"label\";s:4:\"MSCI\";s:5:\"value\";s:4:\"MSCI\";s:11:\"description\";s:9:\"MSCI Inc.\";}i:14;a:3:{s:5:\"label\";s:4:\"^DJI\";s:5:\"value\";s:4:\"^DJI\";s:11:\"description\";s:28:\"Dow Jones Industrial Average\";}i:15;a:3:{s:5:\"label\";s:5:\"^IXIC\";s:5:\"value\";s:5:\"^IXIC\";s:11:\"description\";s:16:\"NASDAQ Composite\";}i:16;a:3:{s:5:\"label\";s:5:\"^FTSE\";s:5:\"value\";s:5:\"^FTSE\";s:11:\"description\";s:8:\"FTSE 100\";}i:17;a:3:{s:5:\"label\";s:5:\"^JKSE\";s:5:\"value\";s:5:\"^JKSE\";s:11:\"description\";s:23:\"Jakarta Composite Index\";}i:18;a:3:{s:5:\"label\";s:5:\"^GSPC\";s:5:\"value\";s:5:\"^GSPC\";s:11:\"description\";s:7:\"S&P 500\";}i:19;a:3:{s:5:\"label\";s:2:\"GE\";s:5:\"value\";s:2:\"GE\";s:11:\"description\";s:24:\"General Electric Company\";}i:20;a:3:{s:5:\"label\";s:3:\"ASB\";s:5:\"value\";s:3:\"ASB\";s:11:\"description\";s:20:\"Associated Banc-Corp\";}i:21;a:3:{s:5:\"label\";s:3:\"CLF\";s:5:\"value\";s:3:\"CLF\";s:11:\"description\";s:21:\"Cleveland-Cliffs Inc.\";}i:22;a:3:{s:5:\"label\";s:3:\"MUX\";s:5:\"value\";s:3:\"MUX\";s:11:\"description\";s:18:\"McEwen Mining Inc.\";}i:23;a:3:{s:5:\"label\";s:3:\"MOS\";s:5:\"value\";s:3:\"MOS\";s:11:\"description\";s:18:\"The Mosaic Company\";}i:24;a:3:{s:5:\"label\";s:2:\"CF\";s:5:\"value\";s:2:\"CF\";s:11:\"description\";s:28:\"CF Industries Holdings, Inc.\";}i:25;a:3:{s:5:\"label\";s:3:\"MON\";s:5:\"value\";s:3:\"MON\";s:11:\"description\";s:16:\"Monsanto Company\";}i:26;a:3:{s:5:\"label\";s:3:\"TNH\";s:5:\"value\";s:3:\"TNH\";s:11:\"description\";s:29:\"ITerra Nitrogen Company, L.P.\";}i:27;a:3:{s:5:\"label\";s:3:\"UAN\";s:5:\"value\";s:3:\"UAN\";s:11:\"description\";s:16:\"CVR Partners, LP\";}i:28;a:3:{s:5:\"label\";s:4:\"CVRR\";s:5:\"value\";s:4:\"CVRR\";s:11:\"description\";s:16:\"CVR Refining, LP\";}i:29;a:3:{s:5:\"label\";s:3:\"CVI\";s:5:\"value\";s:3:\"CVI\";s:11:\"description\";s:16:\"CVR Energy, Inc.\";}i:30;a:3:{s:5:\"label\";s:3:\"SDT\";s:5:\"value\";s:3:\"SDT\";s:11:\"description\";s:31:\"SandRidge Mississippian Trust I\";}i:31;a:3:{s:5:\"label\";s:4:\"CLMT\";s:5:\"value\";s:4:\"CLMT\";s:11:\"description\";s:41:\"Calumet Specialty Products Partners, L.P.\";}i:32;a:3:{s:5:\"label\";s:4:\"MMLP\";s:5:\"value\";s:4:\"MMLP\";s:11:\"description\";s:30:\"Martin Midstream Partners L.P.\";}i:33;a:3:{s:5:\"label\";s:3:\"BAC\";s:5:\"value\";s:3:\"BAC\";s:11:\"description\";s:27:\"Bank of America Corporation\";}i:34;a:3:{s:5:\"label\";s:1:\"F\";s:5:\"value\";s:1:\"F\";s:11:\"description\";s:18:\"Ford Motor Company\";}i:35;a:3:{s:5:\"label\";s:3:\"JPM\";s:5:\"value\";s:3:\"JPM\";s:11:\"description\";s:20:\"JPMorgan Chase & Co.\";}i:36;a:3:{s:5:\"label\";s:2:\"GS\";s:5:\"value\";s:2:\"GS\";s:11:\"description\";s:29:\"The Goldman Sachs Group, Inc.\";}i:37;a:3:{s:5:\"label\";s:3:\"PFE\";s:5:\"value\";s:3:\"PFE\";s:11:\"description\";s:11:\"Pfizer Inc.\";}i:38;a:3:{s:5:\"label\";s:4:\"MSFT\";s:5:\"value\";s:4:\"MSFT\";s:11:\"description\";s:21:\"Microsoft Corporation\";}i:39;a:3:{s:5:\"label\";s:4:\"AMZN\";s:5:\"value\";s:4:\"AMZN\";s:11:\"description\";s:16:\"Amazon.com, Inc.\";}i:40;a:3:{s:5:\"label\";s:4:\"GC=F\";s:5:\"value\";s:4:\"GC=F\";s:11:\"description\";s:12:\"Gold Futures\";}i:41;a:3:{s:5:\"label\";s:4:\"SI=F\";s:5:\"value\";s:4:\"SI=F\";s:11:\"description\";s:14:\"Silver Futures\";}i:42;a:3:{s:5:\"label\";s:4:\"CL=F\";s:5:\"value\";s:4:\"CL=F\";s:11:\"description\";s:29:\"Light Sweet Crude Oil Futures\";}i:43;a:3:{s:5:\"label\";s:3:\"IRM\";s:5:\"value\";s:3:\"IRM\";s:11:\"description\";s:26:\"Iron Mountain Incorporated\";}i:44;a:3:{s:5:\"label\";s:4:\"HG=F\";s:5:\"value\";s:4:\"HG=F\";s:11:\"description\";s:14:\"Copper Futures\";}i:45;a:3:{s:5:\"label\";s:3:\"ACH\";s:5:\"value\";s:3:\"ACH\";s:11:\"description\";s:37:\"Aluminum Corporation of China Limited\";}i:46;a:3:{s:5:\"label\";s:4:\"PL=F\";s:5:\"value\";s:4:\"PL=F\";s:11:\"description\";s:16:\"Platinum Futures\";}i:47;a:3:{s:5:\"label\";s:7:\"BITL.BO\";s:5:\"value\";s:7:\"BITL.BO\";s:11:\"description\";s:25:\"Bronze Infra-Tech Limited\";}i:48;a:3:{s:5:\"label\";s:9:\"BRONZE.BO\";s:5:\"value\";s:9:\"BRONZE.BO\";s:11:\"description\";s:22:\"Bronze Trading Limited\";}i:49;a:3:{s:5:\"label\";s:3:\"LFC\";s:5:\"value\";s:3:\"LFC\";s:11:\"description\";s:36:\"China Life Insurance Company Limited\";}}', 'yes'),
(381, 'vc_version', '6.6.0', 'yes'),
(382, 'consulting_extends_version', '3.5', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(383, 'consulting_settings', 'a:161:{s:4:\"logo\";s:0:\"\";s:9:\"dark_logo\";s:0:\"\";s:10:\"logo_width\";s:3:\"170\";s:11:\"logo_height\";s:0:\"\";s:11:\"logo_margin\";a:5:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"enable_preloader\";b:0;s:9:\"site_skin\";s:12:\"skin_default\";s:20:\"site_skin_base_color\";s:7:\"#002e5b\";s:25:\"site_skin_secondary_color\";s:7:\"#6c98e1\";s:21:\"site_skin_third_color\";s:7:\"#fde428\";s:10:\"site_boxed\";s:0:\"\";s:8:\"bg_image\";s:8:\"bg_img_1\";s:15:\"custom_bg_image\";s:0:\"\";s:14:\"google_api_key\";s:0:\"\";s:16:\"enable_recaptcha\";s:0:\"\";s:20:\"recaptcha_public_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:26:\"top_bar_information_notice\";s:0:\"\";s:7:\"top_bar\";b:1;s:13:\"wpml_switcher\";b:0;s:19:\"wpml_switcher_style\";s:10:\"wpml_theme\";s:20:\"wpml_switcher_mobile\";b:1;s:19:\"wc_topbar_cart_hide\";b:0;s:15:\"offices_contact\";a:2:{i:0;a:8:{s:22:\"top_bar_contact_office\";s:15:\"New York Office\";s:23:\"top_bar_contact_address\";s:27:\"1010 New York, NY 10018 US.\";s:28:\"top_bar_contact_address_icon\";a:3:{s:4:\"icon\";s:10:\"stm-marker\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:26:\"top_bar_contact_email_icon\";a:3:{s:4:\"icon\";s:0:\"\";s:5:\"color\";s:4:\"#000\";s:4:\"size\";i:15;}s:21:\"top_bar_contact_hours\";s:37:\"Mon - Sat 8.00 - 18.00. Sunday CLOSED\";s:26:\"top_bar_contact_hours_icon\";a:3:{s:4:\"icon\";s:10:\"stm-clock6\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:21:\"top_bar_contact_phone\";s:12:\"212 386 5575\";s:26:\"top_bar_contact_phone_icon\";a:3:{s:4:\"icon\";s:9:\"stm-phone\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}}i:1;a:8:{s:22:\"top_bar_contact_office\";s:13:\"London Office\";s:23:\"top_bar_contact_address\";s:32:\"15 Baker Str., London, HA018 UK.\";s:28:\"top_bar_contact_address_icon\";a:3:{s:4:\"icon\";s:10:\"stm-marker\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:26:\"top_bar_contact_email_icon\";a:3:{s:4:\"icon\";s:0:\"\";s:5:\"color\";s:4:\"#000\";s:4:\"size\";i:15;}s:21:\"top_bar_contact_hours\";s:38:\"Mon - Sat 8.00 - 18.00. Sunday CLOSED\";s:26:\"top_bar_contact_hours_icon\";a:3:{s:4:\"icon\";s:10:\"stm-clock6\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:21:\"top_bar_contact_phone\";s:11:\"44 382 5555\";s:26:\"top_bar_contact_phone_icon\";a:3:{s:4:\"icon\";s:9:\"stm-phone\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}}}s:31:\"header_style_information_notice\";s:0:\"\";s:12:\"header_style\";s:14:\"header_style_2\";s:9:\"mega_menu\";b:1;s:11:\"sticky_menu\";s:0:\"\";s:12:\"wc_cart_hide\";b:1;s:11:\"mobile_grid\";s:9:\"landscape\";s:16:\"header_copyright\";s:139:\"<p>Theme by &lt;a href=\'http://stylemixthemes.com/\' target=\'_blank\'&gt;Stylemix Themes&lt;/a&gt; &lt;br&gt;2021 © All rights reserved.</p>\";s:25:\"header_information_notice\";s:0:\"\";s:14:\"header_address\";s:46:\"1010 Avenue of the Moon New York, NY 10018 US.\";s:19:\"header_address_icon\";a:3:{s:4:\"icon\";s:10:\"stm-marker\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:20:\"header_working_hours\";s:69:\"Write us <a href=\"mailto:info@consulting.com\">info@consulting.com</a>\";s:25:\"header_working_hours_icon\";a:3:{s:4:\"icon\";s:9:\"stm-clock\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:12:\"header_phone\";s:94:\"<strong>212 386 5575</strong><span data-scroll-to=\"request-call-back\">Request call back</span>\";s:17:\"header_phone_icon\";a:3:{s:4:\"icon\";s:14:\"stm-phone_13_2\";s:5:\"color\";s:7:\"#a0ce4e\";s:4:\"size\";i:15;}s:26:\"socials_information_notice\";s:0:\"\";s:24:\"mobile_socials_show_hide\";s:0:\"\";s:33:\"header_socials_information_notice\";s:0:\"\";s:14:\"header_socials\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:11:\"google-plus\";}s:32:\"page_settings_information_notice\";s:0:\"\";s:22:\"metabox_header_inverse\";s:0:\"\";s:25:\"metabox_disable_title_box\";s:0:\"\";s:26:\"metabox_enable_transparent\";s:0:\"\";s:21:\"metabox_disable_title\";s:0:\"\";s:29:\"metabox_title_box_title_color\";s:0:\"\";s:34:\"metabox_title_box_title_line_color\";s:0:\"\";s:26:\"metabox_title_box_bg_image\";s:0:\"\";s:29:\"metabox_title_box_bg_position\";s:0:\"\";s:25:\"metabox_title_box_bg_size\";s:0:\"\";s:27:\"metabox_title_box_bg_repeat\";s:9:\"no-repeat\";s:27:\"metabox_disable_breadcrumbs\";s:0:\"\";s:33:\"metabox_enable_header_transparent\";s:0:\"\";s:30:\"metabox_content_bg_transparent\";s:0:\"\";s:33:\"metabox_footer_copyright_border_t\";s:0:\"\";s:11:\"blog_layout\";s:4:\"list\";s:17:\"blog_sidebar_type\";s:2:\"wp\";s:15:\"blog_wp_sidebar\";s:24:\"consulting-right-sidebar\";s:15:\"blog_vc_sidebar\";s:0:\"\";s:21:\"blog_sidebar_position\";s:5:\"right\";s:18:\"event_sidebar_type\";s:2:\"vc\";s:16:\"event_wp_sidebar\";s:0:\"\";s:16:\"event_vc_sidebar\";s:4:\"1470\";s:22:\"event_terms_conditions\";s:68:\"I agree with the all additional <a href=\'#\'>Terms and Conditions</a>\";s:17:\"shop_sidebar_type\";s:2:\"wp\";s:15:\"shop_wp_sidebar\";s:15:\"consulting-shop\";s:15:\"shop_vc_sidebar\";s:0:\"\";s:21:\"shop_sidebar_position\";s:5:\"right\";s:22:\"shop_products_per_page\";s:1:\"9\";s:37:\"post_type_services_information_notice\";s:0:\"\";s:33:\"post_type_services_enable_archive\";b:1;s:32:\"post_type_services_enable_single\";b:1;s:24:\"post_type_services_title\";s:7:\"Service\";s:25:\"post_type_services_plural\";s:8:\"Services\";s:28:\"post_type_services_all_items\";s:12:\"All Services\";s:26:\"post_type_services_rewrite\";s:7:\"service\";s:23:\"post_type_services_icon\";s:19:\"dashicons-clipboard\";s:36:\"post_type_careers_information_notice\";s:0:\"\";s:32:\"post_type_careers_enable_archive\";b:1;s:31:\"post_type_careers_enable_single\";b:1;s:23:\"post_type_careers_title\";s:7:\"Vacancy\";s:24:\"post_type_careers_plural\";s:9:\"Vacancies\";s:27:\"post_type_careers_all_items\";s:13:\"All Vacancies\";s:25:\"post_type_careers_rewrite\";s:15:\"careers_archive\";s:22:\"post_type_careers_icon\";s:12:\"dashicons-id\";s:34:\"post_type_staff_information_notice\";s:0:\"\";s:30:\"post_type_staff_enable_archive\";b:1;s:29:\"post_type_staff_enable_single\";b:1;s:21:\"post_type_staff_title\";s:5:\"Staff\";s:22:\"post_type_staff_plural\";s:5:\"Staff\";s:25:\"post_type_staff_all_items\";s:9:\"All Staff\";s:23:\"post_type_staff_rewrite\";s:5:\"staff\";s:20:\"post_type_staff_icon\";s:16:\"dashicons-groups\";s:34:\"post_type_works_information_notice\";s:0:\"\";s:30:\"post_type_works_enable_archive\";b:1;s:29:\"post_type_works_enable_single\";b:1;s:21:\"post_type_works_title\";s:4:\"Work\";s:22:\"post_type_works_plural\";s:5:\"Works\";s:25:\"post_type_works_all_items\";s:9:\"All Works\";s:23:\"post_type_works_rewrite\";s:5:\"works\";s:20:\"post_type_works_icon\";s:19:\"dashicons-portfolio\";s:41:\"post_type_testimonials_information_notice\";s:0:\"\";s:37:\"post_type_testimonials_enable_archive\";b:1;s:28:\"post_type_testimonials_title\";s:11:\"Testimonial\";s:29:\"post_type_testimonials_plural\";s:12:\"Testimonials\";s:32:\"post_type_testimonials_all_items\";s:16:\"All Testimonials\";s:30:\"post_type_testimonials_rewrite\";s:12:\"testimonials\";s:27:\"post_type_testimonials_icon\";s:21:\"dashicons-testimonial\";s:35:\"post_type_events_information_notice\";s:0:\"\";s:31:\"post_type_events_enable_archive\";b:1;s:30:\"post_type_events_enable_single\";b:1;s:22:\"post_type_events_title\";s:6:\"Events\";s:23:\"post_type_events_plural\";s:6:\"Events\";s:26:\"post_type_events_all_items\";s:10:\"All Events\";s:24:\"post_type_events_rewrite\";s:6:\"events\";s:21:\"post_type_events_icon\";s:19:\"dashicons-clipboard\";s:38:\"post_type_portfolio_information_notice\";s:0:\"\";s:34:\"post_type_portfolio_enable_archive\";b:1;s:33:\"post_type_portfolio_enable_single\";b:1;s:25:\"post_type_portfolio_title\";s:9:\"Portfolio\";s:26:\"post_type_portfolio_plural\";s:9:\"Portfolio\";s:29:\"post_type_portfolio_all_items\";s:13:\"All Portfolio\";s:27:\"post_type_portfolio_rewrite\";s:9:\"portfolio\";s:24:\"post_type_portfolio_icon\";s:19:\"dashicons-clipboard\";s:25:\"stocks_information_notice\";s:0:\"\";s:6:\"stocks\";s:0:\"\";s:13:\"stocks_ticker\";s:0:\"\";s:16:\"stocks_transient\";s:4:\"3600\";s:16:\"footer_show_hide\";s:0:\"\";s:12:\"footer_style\";s:7:\"style_2\";s:22:\"footer_custom_settings\";s:0:\"\";s:33:\"footer_custom_settings_color_text\";s:0:\"\";s:33:\"footer_custom_settings_color_link\";s:0:\"\";s:39:\"footer_custom_settings_color_link_hover\";s:0:\"\";s:31:\"footer_custom_settings_color_bg\";s:0:\"\";s:29:\"footer_custom_settings_bg_img\";s:0:\"\";s:33:\"footer_custom_settings_bg_overlay\";s:0:\"\";s:21:\"footer_logo_show_hide\";b:0;s:11:\"footer_logo\";i:7304;s:17:\"footer_logo_width\";s:0:\"\";s:18:\"footer_logo_height\";s:0:\"\";s:24:\"footer_show_hide_socials\";b:1;s:33:\"footer_socials_information_notice\";s:0:\"\";s:14:\"footer_socials\";a:0:{}s:20:\"footer_sidebar_count\";i:4;s:11:\"footer_text\";s:364:\"Qualstream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qualstream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.\";s:16:\"footer_copyright\";s:66:\"Copyright &copy; 2021 Qualstream Technologies. All rights reserved\";s:19:\"footer_current_year\";b:0;s:16:\"body_font_family\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"100\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"14\";s:11:\"line-height\";s:2:\"26\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:6:\"normal\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:21:\"secondary_font_family\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"14\";s:11:\"line-height\";s:2:\"26\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:6:\"normal\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:12:\"typography_p\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:7:\"regular\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"16\";s:11:\"line-height\";s:2:\"26\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:6:\"normal\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h1\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"66\";s:11:\"line-height\";s:2:\"78\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h2\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"46\";s:11:\"line-height\";s:2:\"52\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h3\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"36\";s:11:\"line-height\";s:2:\"42\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h4\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"24\";s:11:\"line-height\";s:2:\"30\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h5\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"22\";s:11:\"line-height\";s:2:\"26\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:13:\"typography_h6\";a:14:{s:11:\"font-family\";s:7:\"Poppins\";s:13:\"google-weight\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:6:\"normal\";s:6:\"subset\";s:5:\"latin\";s:5:\"color\";s:0:\"\";s:9:\"font-size\";s:2:\"15\";s:11:\"line-height\";s:2:\"30\";s:10:\"text-align\";s:4:\"left\";s:12:\"word-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"backup-font\";s:5:\"Arial\";s:9:\"font-data\";a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2020-11-06\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}s:7:\"socials\";a:25:{i:0;a:2:{s:3:\"key\";s:8:\"facebook\";s:5:\"value\";s:1:\"#\";}i:1;a:2:{s:3:\"key\";s:7:\"twitter\";s:5:\"value\";s:1:\"#\";}i:2;a:1:{s:3:\"key\";s:9:\"instagram\";}i:3;a:2:{s:3:\"key\";s:11:\"google-plus\";s:5:\"value\";s:1:\"#\";}i:4;a:1:{s:3:\"key\";s:5:\"vimeo\";}i:5;a:1:{s:3:\"key\";s:8:\"linkedin\";}i:6;a:1:{s:3:\"key\";s:7:\"behance\";}i:7;a:1:{s:3:\"key\";s:8:\"dribbble\";}i:8;a:1:{s:3:\"key\";s:6:\"flickr\";}i:9;a:1:{s:3:\"key\";s:6:\"github\";}i:10;a:1:{s:3:\"key\";s:9:\"pinterest\";}i:11;a:1:{s:3:\"key\";s:5:\"yahoo\";}i:12;a:1:{s:3:\"key\";s:9:\"delicious\";}i:13;a:1:{s:3:\"key\";s:7:\"dropbox\";}i:14;a:1:{s:3:\"key\";s:6:\"reddit\";}i:15;a:1:{s:3:\"key\";s:10:\"soundcloud\";}i:16;a:1:{s:3:\"key\";s:6:\"google\";}i:17;a:1:{s:3:\"key\";s:5:\"skype\";}i:18;a:1:{s:3:\"key\";s:7:\"youtube\";}i:19;a:1:{s:3:\"key\";s:12:\"youtube-play\";}i:20;a:1:{s:3:\"key\";s:6:\"tumblr\";}i:21;a:1:{s:3:\"key\";s:8:\"whatsapp\";}i:22;a:1:{s:3:\"key\";s:13:\"odnoklassniki\";}i:23;a:1:{s:3:\"key\";s:2:\"vk\";}i:24;a:1:{s:3:\"key\";s:4:\"xing\";}}s:10:\"custom_css\";s:0:\"\";}', 'yes'),
(384, 'consulting_wpcfto_style', '16', 'yes'),
(385, 'consulting_extends_db_version', '1.0.1', 'yes'),
(388, 'sbi_rating_notice', 'dismissed', 'no'),
(389, 'sbi_db_version', '1.9', 'yes'),
(393, 'stm_fonts', 'a:1:{s:3:\"stm\";a:5:{s:7:\"include\";s:13:\"stm_fonts/stm\";s:6:\"folder\";s:13:\"stm_fonts/stm\";s:5:\"style\";s:11:\"stm/stm.css\";s:6:\"config\";s:11:\"charmap.php\";s:4:\"json\";s:14:\"selection.json\";}}', 'yes'),
(394, 'wc_blocks_db_schema_version', '260', 'yes'),
(395, 'wc_remote_inbox_notifications_stored_state', 'O:8:\"stdClass\":3:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;s:17:\"new_product_count\";i:0;}', 'yes'),
(396, 'sbi_notifications', 'a:4:{s:6:\"update\";i:1651824543;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}', 'yes'),
(397, 'sbi_newuser_notifications', 'a:4:{s:6:\"update\";i:1617626491;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}', 'yes'),
(398, 'wpb_js_composer_license_activation_notified', 'yes', 'yes'),
(399, '_elementor_installed_time', '1617626492', 'yes'),
(402, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(403, 'wc_remote_inbox_notifications_specs', 'a:60:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:161:\"https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:142:\"https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}s:17:\"airwallex_q1_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:17:\"airwallex_q1_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Save big on foreign exchange (FX) fees\";s:7:\"content\";s:259:\"Boost your international sales by offering Apple Pay, Google Pay, and 60+ local payment methods with Airwallex. Save time and money by settling payments directly in USD, EUR, HKD, SGD, AUD, and more — without the extra FX fees. Simple, cost-effective, fast.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"airwallex_q1_2024\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Get started with Airwallex\";}}s:3:\"url\";s:123:\"https://woocommerce.com/products/airwallexpayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=airwallex_q1_2024\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-02-29 17:00:05\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:20:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AT\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CN\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FR\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HK\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IL\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IT\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"LT\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NZ\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"PL\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"PT\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SG\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ES\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"airwallexpayments\";}}}}}}}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(404, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:14:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:796:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/skincare-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/lp/dot-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:187;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/nails-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:190;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:191;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:198;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:200;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:201;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:204;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:205;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:206;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:208;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:210;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:212;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:213;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:215;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:216;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:218;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:221;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:224;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:226;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:228;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:229;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:230;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:234;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:235;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:238;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:240;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:242;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:244;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:245;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:253;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:259;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:365;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:379;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:429;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:439;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:441;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:445;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:447;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:543;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:545;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:589;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:592;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:594;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:596;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:655;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:656;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:658;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:662;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:663;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:664;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:694;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:695;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:696;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:697;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:698;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:699;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:700;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:701;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:702;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:703;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:704;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:705;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:706;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:707;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:708;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:709;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:740;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:749;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:750;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:779;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(405, 'elementor_remote_info_feed_data', 'a:5:{i:0;a:5:{s:5:\"title\";s:29:\"What Is Inclusive Web Design?\";s:7:\"excerpt\";s:297:\"When designing a website, it is important to keep in mind that not all users interact with it in the same way. Using inclusive design will help you remove bias and assumptions from your website and ensure that users will not feel excluded. Keep reading to learn how to master this modern approach.\";s:7:\"created\";i:1651142542;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/inclusive-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:55:\"How To Grow Your Business Using Elementor Cloud Website\";s:7:\"excerpt\";s:313:\"In our ‘Community Talks’ event, four leading web creators held a panel discussion with practical tips on how you can incorporate Elementor Cloud Website into your business model to earn more. Uncover low-hanging fruit opportunities and learn to hunt down new avenues for business with Elementor Cloud Website.\";s:7:\"created\";i:1651067671;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:155:\"https://elementor.com/blog/how-to-grow-your-business-using-elementor-cloud-website/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:59:\"Word-of-Mouth Marketing: How To Build a Successful Strategy\";s:7:\"excerpt\";s:337:\"One of the most effective marketing strategies is word-of-mouth. Think about it: would you rather listen to a random guy on an infomercial or a direct recommendation from your business mentor? In this article, we’ll dive into what word-of-mouth marketing actually means and how you can successfully leverage it for your business today.\";s:7:\"created\";i:1650978196;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/word-of-mouth-marketing/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:88:\"More From Elementor 3.6 — Enhanced Import/Export and Rearrange Global Fonts and Colors\";s:7:\"excerpt\";s:251:\"In addition to the Flexbox Containers experiment, Elementor 3.6 also includes additions to the Import/Export tool and the ability to customize the order of your Global Fonts and Colors. These updates allow you to improve and accelerate your workflow. \";s:7:\"created\";i:1650456753;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:164:\"https://elementor.com/blog/introducing-enhanced-import-export-rearrange-global-fonts-colors/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:45:\"PowerPack Addons Thought Leadership Interview\";s:7:\"excerpt\";s:274:\"In our latest edition of the Thought Leadership Interview Series, we spoke with the team behind the PowerPack Addons plugin for Elementor. Get an insight into what makes them tick, how their plugin complements Elementor, and their contributions to the Web Creator community.\";s:7:\"created\";i:1650453676;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:145:\"https://elementor.com/blog/powerpack-addons-thought-leadership-interview/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'no'),
(412, 'action_scheduler_migration_status', 'complete', 'yes'),
(427, 'bcn_options', 'a:248:{s:17:\"bmainsite_display\";b:0;s:18:\"Hmainsite_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:28:\"Hmainsite_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:13:\"bhome_display\";b:1;s:14:\"Hhome_template\";s:129:\"<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">Home</a></span>\";s:24:\"Hhome_template_no_anchor\";s:71:\"<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">Home</span></span>\";s:13:\"bblog_display\";b:1;s:14:\"Hblog_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:24:\"Hblog_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:10:\"hseparator\";s:46:\"<span><i class=\"fa fa-angle-right\"></i></span>\";s:12:\"blimit_title\";b:0;s:17:\"amax_title_length\";i:20;s:20:\"bcurrent_item_linked\";b:0;s:19:\"Hpost_page_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"Hpost_page_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:15:\"apost_page_root\";s:1:\"2\";s:15:\"Hpaged_template\";s:13:\"Page %htitle%\";s:14:\"bpaged_display\";b:0;s:19:\"Hpost_post_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"Hpost_post_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:15:\"apost_post_root\";s:1:\"0\";s:27:\"bpost_post_taxonomy_display\";b:1;s:24:\"Spost_post_taxonomy_type\";s:8:\"category\";s:25:\"Hpost_attachment_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_attachment_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:13:\"H404_template\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:10:\"S404_title\";s:3:\"404\";s:16:\"Hsearch_template\";s:125:\"Search results for \'<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\'\";s:26:\"Hsearch_template_no_anchor\";s:29:\"Search results for \'%htitle%\'\";s:22:\"Htax_post_tag_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_post_tag_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_post_format_template\";s:247:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_post_format_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:16:\"Hauthor_template\";s:107:\"Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\";s:26:\"Hauthor_template_no_anchor\";s:21:\"Articles by: %htitle%\";s:12:\"Sauthor_name\";s:12:\"display_name\";s:22:\"Htax_category_template\";s:256:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:14:\"Hdate_template\";s:247:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:24:\"Hdate_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Hpost_stm_service_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_stm_service_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_stm_service_archive_display\";b:1;s:22:\"apost_stm_service_root\";i:0;s:34:\"bpost_stm_service_taxonomy_display\";b:0;s:31:\"Spost_stm_service_taxonomy_type\";s:4:\"date\";s:26:\"Hpost_stm_careers_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_stm_careers_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_stm_careers_archive_display\";b:1;s:22:\"apost_stm_careers_root\";i:0;s:34:\"bpost_stm_careers_taxonomy_display\";b:0;s:31:\"Spost_stm_careers_taxonomy_type\";s:4:\"date\";s:24:\"Hpost_stm_staff_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_staff_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_staff_archive_display\";b:1;s:20:\"apost_stm_staff_root\";i:0;s:32:\"bpost_stm_staff_taxonomy_display\";b:0;s:29:\"Spost_stm_staff_taxonomy_type\";s:4:\"date\";s:24:\"Hpost_stm_works_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_works_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_works_archive_display\";b:1;s:20:\"apost_stm_works_root\";i:0;s:32:\"bpost_stm_works_taxonomy_display\";b:0;s:29:\"Spost_stm_works_taxonomy_type\";s:18:\"stm_works_category\";s:31:\"Hpost_stm_testimonials_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"Hpost_stm_testimonials_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"bpost_stm_testimonials_archive_display\";b:1;s:27:\"apost_stm_testimonials_root\";i:0;s:39:\"bpost_stm_testimonials_taxonomy_display\";b:0;s:36:\"Spost_stm_testimonials_taxonomy_type\";s:4:\"date\";s:29:\"Hpost_stm_vc_sidebar_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"Hpost_stm_vc_sidebar_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"bpost_stm_vc_sidebar_archive_display\";b:1;s:25:\"apost_stm_vc_sidebar_root\";i:0;s:37:\"bpost_stm_vc_sidebar_taxonomy_display\";b:0;s:34:\"Spost_stm_vc_sidebar_taxonomy_type\";s:4:\"date\";s:22:\"Hpost_product_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Hpost_product_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"bpost_product_archive_display\";b:1;s:18:\"apost_product_root\";i:0;s:30:\"bpost_product_taxonomy_display\";b:1;s:27:\"Spost_product_taxonomy_type\";s:11:\"product_cat\";s:32:\"Hpost_product_variation_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Hpost_product_variation_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"bpost_product_variation_archive_display\";b:0;s:28:\"apost_product_variation_root\";i:0;s:40:\"bpost_product_variation_taxonomy_display\";b:0;s:37:\"Spost_product_variation_taxonomy_type\";s:22:\"product_shipping_class\";s:25:\"Hpost_shop_order_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_shop_order_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"bpost_shop_order_archive_display\";b:0;s:21:\"apost_shop_order_root\";i:0;s:33:\"bpost_shop_order_taxonomy_display\";b:0;s:30:\"Spost_shop_order_taxonomy_type\";s:4:\"date\";s:32:\"Hpost_shop_order_refund_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Hpost_shop_order_refund_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"bpost_shop_order_refund_archive_display\";b:0;s:28:\"apost_shop_order_refund_root\";i:0;s:40:\"bpost_shop_order_refund_taxonomy_display\";b:0;s:37:\"Spost_shop_order_refund_taxonomy_type\";s:4:\"date\";s:26:\"Hpost_shop_coupon_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_shop_coupon_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_shop_coupon_archive_display\";b:0;s:22:\"apost_shop_coupon_root\";i:0;s:34:\"bpost_shop_coupon_taxonomy_display\";b:0;s:31:\"Spost_shop_coupon_taxonomy_type\";s:4:\"date\";s:27:\"Hpost_shop_webhook_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_shop_webhook_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_shop_webhook_archive_display\";b:0;s:23:\"apost_shop_webhook_root\";i:0;s:35:\"bpost_shop_webhook_taxonomy_display\";b:0;s:32:\"Spost_shop_webhook_taxonomy_type\";s:4:\"date\";s:33:\"Hpost_wpcf7_contact_form_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:43:\"Hpost_wpcf7_contact_form_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:40:\"bpost_wpcf7_contact_form_archive_display\";b:0;s:29:\"apost_wpcf7_contact_form_root\";i:0;s:41:\"bpost_wpcf7_contact_form_taxonomy_display\";b:0;s:38:\"Spost_wpcf7_contact_form_taxonomy_type\";s:4:\"date\";s:27:\"Hpost_vc_grid_item_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_vc_grid_item_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_vc_grid_item_archive_display\";b:0;s:23:\"apost_vc_grid_item_root\";i:0;s:35:\"bpost_vc_grid_item_taxonomy_display\";b:0;s:32:\"Spost_vc_grid_item_taxonomy_type\";s:4:\"date\";s:25:\"Hpost_mc4wp-form_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_mc4wp-form_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"bpost_mc4wp-form_archive_display\";b:0;s:21:\"apost_mc4wp-form_root\";i:0;s:33:\"bpost_mc4wp-form_taxonomy_display\";b:0;s:30:\"Spost_mc4wp-form_taxonomy_type\";s:4:\"date\";s:39:\"Htax_stm_testimonials_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:49:\"Htax_stm_testimonials_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_stm_works_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_works_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Htax_product_type_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_product_type_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_product_cat_template\";s:264:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Product Category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_product_cat_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_product_tag_template\";s:259:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Product Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_product_tag_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_product_shipping_class_template\";s:262:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Shipping Class archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:46:\"Htax_product_shipping_class_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:22:\"Htax_pa_color_template\";s:253:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% color archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_pa_color_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:27:\"Hpost_stm_partners_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_stm_partners_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_stm_partners_archive_display\";b:0;s:23:\"apost_stm_partners_root\";i:0;s:35:\"bpost_stm_partners_taxonomy_display\";b:0;s:32:\"Spost_stm_partners_taxonomy_type\";s:4:\"date\";s:32:\"bpost_stm_event_taxonomy_referer\";b:0;s:24:\"Hpost_stm_event_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_event_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_event_archive_display\";b:1;s:20:\"apost_stm_event_root\";i:0;s:33:\"bpost_stm_event_hierarchy_display\";b:1;s:30:\"Spost_stm_event_hierarchy_type\";s:18:\"stm_event_category\";s:35:\"bpost_event_member_taxonomy_referer\";b:0;s:27:\"Hpost_event_member_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_event_member_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_event_member_archive_display\";b:1;s:23:\"apost_event_member_root\";i:0;s:36:\"bpost_event_member_hierarchy_display\";b:0;s:33:\"Spost_event_member_hierarchy_type\";s:8:\"BCN_DATE\";s:34:\"bpost_stm_service_taxonomy_referer\";b:0;s:35:\"bpost_stm_service_hierarchy_display\";b:1;s:32:\"Spost_stm_service_hierarchy_type\";s:20:\"stm_service_category\";s:34:\"bpost_stm_careers_taxonomy_referer\";b:0;s:35:\"bpost_stm_careers_hierarchy_display\";b:0;s:32:\"Spost_stm_careers_hierarchy_type\";s:8:\"BCN_DATE\";s:32:\"bpost_stm_staff_taxonomy_referer\";b:0;s:33:\"bpost_stm_staff_hierarchy_display\";b:1;s:30:\"Spost_stm_staff_hierarchy_type\";s:18:\"stm_staff_category\";s:32:\"bpost_stm_works_taxonomy_referer\";b:0;s:33:\"bpost_stm_works_hierarchy_display\";b:1;s:30:\"Spost_stm_works_hierarchy_type\";s:18:\"stm_works_category\";s:39:\"bpost_stm_testimonials_taxonomy_referer\";b:0;s:40:\"bpost_stm_testimonials_hierarchy_display\";b:1;s:37:\"Spost_stm_testimonials_hierarchy_type\";s:25:\"stm_testimonials_category\";s:37:\"bpost_stm_vc_sidebar_taxonomy_referer\";b:0;s:38:\"bpost_stm_vc_sidebar_hierarchy_display\";b:0;s:35:\"Spost_stm_vc_sidebar_hierarchy_type\";s:8:\"BCN_DATE\";s:36:\"bpost_stm_portfolio_taxonomy_referer\";b:0;s:28:\"Hpost_stm_portfolio_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"Hpost_stm_portfolio_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"bpost_stm_portfolio_archive_display\";b:1;s:24:\"apost_stm_portfolio_root\";i:0;s:37:\"bpost_stm_portfolio_hierarchy_display\";b:1;s:34:\"Spost_stm_portfolio_hierarchy_type\";s:22:\"stm_portfolio_category\";s:39:\"bpost_scheduled-action_taxonomy_referer\";b:0;s:31:\"Hpost_scheduled-action_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"Hpost_scheduled-action_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"bpost_scheduled-action_archive_display\";b:0;s:27:\"apost_scheduled-action_root\";i:0;s:40:\"bpost_scheduled-action_hierarchy_display\";b:0;s:37:\"Spost_scheduled-action_hierarchy_type\";s:8:\"BCN_DATE\";s:30:\"bpost_product_taxonomy_referer\";b:0;s:31:\"bpost_product_hierarchy_display\";b:1;s:28:\"Spost_product_hierarchy_type\";s:11:\"product_cat\";s:40:\"bpost_product_variation_taxonomy_referer\";b:0;s:41:\"bpost_product_variation_hierarchy_display\";b:1;s:38:\"Spost_product_variation_hierarchy_type\";s:22:\"product_shipping_class\";s:33:\"bpost_shop_order_taxonomy_referer\";b:0;s:34:\"bpost_shop_order_hierarchy_display\";b:0;s:31:\"Spost_shop_order_hierarchy_type\";s:8:\"BCN_DATE\";s:40:\"bpost_shop_order_refund_taxonomy_referer\";b:0;s:41:\"bpost_shop_order_refund_hierarchy_display\";b:0;s:38:\"Spost_shop_order_refund_hierarchy_type\";s:8:\"BCN_DATE\";s:34:\"bpost_shop_coupon_taxonomy_referer\";b:0;s:35:\"bpost_shop_coupon_hierarchy_display\";b:0;s:32:\"Spost_shop_coupon_hierarchy_type\";s:8:\"BCN_DATE\";s:36:\"bpost_vc4_templates_taxonomy_referer\";b:0;s:28:\"Hpost_vc4_templates_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"Hpost_vc4_templates_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"bpost_vc4_templates_archive_display\";b:0;s:24:\"apost_vc4_templates_root\";i:0;s:37:\"bpost_vc4_templates_hierarchy_display\";b:0;s:34:\"Spost_vc4_templates_hierarchy_type\";s:8:\"BCN_DATE\";s:41:\"bpost_wpcf7_contact_form_taxonomy_referer\";b:0;s:42:\"bpost_wpcf7_contact_form_hierarchy_display\";b:0;s:39:\"Spost_wpcf7_contact_form_hierarchy_type\";s:8:\"BCN_DATE\";s:35:\"bpost_vc_grid_item_taxonomy_referer\";b:0;s:36:\"bpost_vc_grid_item_hierarchy_display\";b:0;s:33:\"Spost_vc_grid_item_hierarchy_type\";s:8:\"BCN_DATE\";s:42:\"bpost_booked_appointments_taxonomy_referer\";b:0;s:34:\"Hpost_booked_appointments_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:44:\"Hpost_booked_appointments_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"bpost_booked_appointments_archive_display\";b:0;s:30:\"apost_booked_appointments_root\";i:0;s:43:\"bpost_booked_appointments_hierarchy_display\";b:1;s:40:\"Spost_booked_appointments_hierarchy_type\";s:23:\"booked_custom_calendars\";s:33:\"bpost_mc4wp-form_taxonomy_referer\";b:0;s:34:\"bpost_mc4wp-form_hierarchy_display\";b:0;s:31:\"Spost_mc4wp-form_hierarchy_type\";s:8:\"BCN_DATE\";s:32:\"Htax_stm_event_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_event_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Htax_stm_service_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:44:\"Htax_stm_service_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_stm_staff_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_staff_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_stm_portfolio_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:46:\"Htax_stm_portfolio_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Htax_action-group_template\";s:260:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Action Group archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_action-group_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_product_visibility_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_product_visibility_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Htax_booked_custom_calendars_template\";s:263:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Custom Calendar archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:47:\"Htax_booked_custom_calendars_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";}', 'yes'),
(428, 'addtoany_options', 'a:43:{s:8:\"position\";s:6:\"bottom\";s:30:\"display_in_posts_on_front_page\";s:2:\"-1\";s:33:\"display_in_posts_on_archive_pages\";s:2:\"-1\";s:19:\"display_in_excerpts\";s:2:\"-1\";s:16:\"display_in_posts\";s:2:\"-1\";s:16:\"display_in_pages\";s:2:\"-1\";s:15:\"display_in_feed\";s:2:\"-1\";s:10:\"show_title\";s:2:\"-1\";s:7:\"onclick\";s:2:\"-1\";s:9:\"icon_size\";s:2:\"20\";s:6:\"button\";s:10:\"A2A_SVG_32\";s:13:\"button_custom\";s:0:\"\";s:17:\"button_show_count\";s:2:\"-1\";s:6:\"header\";s:0:\"\";s:23:\"additional_js_variables\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:12:\"custom_icons\";s:2:\"-1\";s:16:\"custom_icons_url\";s:1:\"/\";s:17:\"custom_icons_type\";s:3:\"png\";s:10:\"inline_css\";s:1:\"1\";s:5:\"cache\";s:2:\"-1\";s:27:\"display_in_cpt_stm_partners\";s:2:\"-1\";s:26:\"display_in_cpt_stm_careers\";s:2:\"-1\";s:24:\"display_in_cpt_stm_staff\";s:2:\"-1\";s:31:\"display_in_cpt_stm_testimonials\";s:2:\"-1\";s:29:\"display_in_cpt_stm_vc_sidebar\";s:2:\"-1\";s:11:\"button_text\";s:5:\"Share\";s:24:\"special_facebook_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:15:\"active_services\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:11:\"google_plus\";}s:29:\"special_facebook_like_options\";a:1:{s:4:\"verb\";s:4:\"like\";}s:29:\"special_twitter_tweet_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:30:\"special_google_plusone_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:33:\"special_google_plus_share_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:29:\"special_pinterest_pin_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:26:\"display_in_cpt_stm_service\";s:2:\"-1\";s:24:\"display_in_cpt_stm_works\";s:2:\"-1\";s:22:\"display_in_cpt_product\";s:2:\"-1\";s:22:\"display_in_attachments\";s:1:\"1\";s:18:\"custom_icons_width\";s:0:\"\";s:19:\"custom_icons_height\";s:0:\"\";s:24:\"display_in_cpt_stm_event\";s:2:\"-1\";s:27:\"display_in_cpt_event_member\";s:2:\"-1\";s:28:\"display_in_cpt_stm_portfolio\";s:2:\"-1\";}', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(429, 'plugins_mods_consulting', 'a:2:{s:11:\"bcn_options\";a:248:{s:17:\"bmainsite_display\";b:0;s:18:\"Hmainsite_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:28:\"Hmainsite_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:13:\"bhome_display\";b:1;s:14:\"Hhome_template\";s:129:\"<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">Home</a></span>\";s:24:\"Hhome_template_no_anchor\";s:71:\"<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">Home</span></span>\";s:13:\"bblog_display\";b:1;s:14:\"Hblog_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:24:\"Hblog_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:10:\"hseparator\";s:46:\"<span><i class=\"fa fa-angle-right\"></i></span>\";s:12:\"blimit_title\";b:0;s:17:\"amax_title_length\";i:20;s:20:\"bcurrent_item_linked\";b:0;s:19:\"Hpost_page_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"Hpost_page_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:15:\"apost_page_root\";s:1:\"2\";s:15:\"Hpaged_template\";s:13:\"Page %htitle%\";s:14:\"bpaged_display\";b:0;s:19:\"Hpost_post_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"Hpost_post_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:15:\"apost_post_root\";s:1:\"0\";s:27:\"bpost_post_taxonomy_display\";b:1;s:24:\"Spost_post_taxonomy_type\";s:8:\"category\";s:25:\"Hpost_attachment_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_attachment_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:13:\"H404_template\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:10:\"S404_title\";s:3:\"404\";s:16:\"Hsearch_template\";s:125:\"Search results for \'<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\'\";s:26:\"Hsearch_template_no_anchor\";s:29:\"Search results for \'%htitle%\'\";s:22:\"Htax_post_tag_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_post_tag_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_post_format_template\";s:247:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_post_format_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:16:\"Hauthor_template\";s:107:\"Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\";s:26:\"Hauthor_template_no_anchor\";s:21:\"Articles by: %htitle%\";s:12:\"Sauthor_name\";s:12:\"display_name\";s:22:\"Htax_category_template\";s:256:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:14:\"Hdate_template\";s:247:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:24:\"Hdate_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Hpost_stm_service_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_stm_service_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_stm_service_archive_display\";b:1;s:22:\"apost_stm_service_root\";i:0;s:34:\"bpost_stm_service_taxonomy_display\";b:0;s:31:\"Spost_stm_service_taxonomy_type\";s:4:\"date\";s:26:\"Hpost_stm_careers_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_stm_careers_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_stm_careers_archive_display\";b:1;s:22:\"apost_stm_careers_root\";i:0;s:34:\"bpost_stm_careers_taxonomy_display\";b:0;s:31:\"Spost_stm_careers_taxonomy_type\";s:4:\"date\";s:24:\"Hpost_stm_staff_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_staff_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_staff_archive_display\";b:1;s:20:\"apost_stm_staff_root\";i:0;s:32:\"bpost_stm_staff_taxonomy_display\";b:0;s:29:\"Spost_stm_staff_taxonomy_type\";s:4:\"date\";s:24:\"Hpost_stm_works_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_works_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_works_archive_display\";b:1;s:20:\"apost_stm_works_root\";i:0;s:32:\"bpost_stm_works_taxonomy_display\";b:0;s:29:\"Spost_stm_works_taxonomy_type\";s:18:\"stm_works_category\";s:31:\"Hpost_stm_testimonials_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"Hpost_stm_testimonials_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"bpost_stm_testimonials_archive_display\";b:1;s:27:\"apost_stm_testimonials_root\";i:0;s:39:\"bpost_stm_testimonials_taxonomy_display\";b:0;s:36:\"Spost_stm_testimonials_taxonomy_type\";s:4:\"date\";s:29:\"Hpost_stm_vc_sidebar_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"Hpost_stm_vc_sidebar_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"bpost_stm_vc_sidebar_archive_display\";b:1;s:25:\"apost_stm_vc_sidebar_root\";i:0;s:37:\"bpost_stm_vc_sidebar_taxonomy_display\";b:0;s:34:\"Spost_stm_vc_sidebar_taxonomy_type\";s:4:\"date\";s:22:\"Hpost_product_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Hpost_product_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:29:\"bpost_product_archive_display\";b:1;s:18:\"apost_product_root\";i:0;s:30:\"bpost_product_taxonomy_display\";b:1;s:27:\"Spost_product_taxonomy_type\";s:11:\"product_cat\";s:32:\"Hpost_product_variation_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Hpost_product_variation_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"bpost_product_variation_archive_display\";b:0;s:28:\"apost_product_variation_root\";i:0;s:40:\"bpost_product_variation_taxonomy_display\";b:0;s:37:\"Spost_product_variation_taxonomy_type\";s:22:\"product_shipping_class\";s:25:\"Hpost_shop_order_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_shop_order_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"bpost_shop_order_archive_display\";b:0;s:21:\"apost_shop_order_root\";i:0;s:33:\"bpost_shop_order_taxonomy_display\";b:0;s:30:\"Spost_shop_order_taxonomy_type\";s:4:\"date\";s:32:\"Hpost_shop_order_refund_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Hpost_shop_order_refund_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:39:\"bpost_shop_order_refund_archive_display\";b:0;s:28:\"apost_shop_order_refund_root\";i:0;s:40:\"bpost_shop_order_refund_taxonomy_display\";b:0;s:37:\"Spost_shop_order_refund_taxonomy_type\";s:4:\"date\";s:26:\"Hpost_shop_coupon_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Hpost_shop_coupon_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:33:\"bpost_shop_coupon_archive_display\";b:0;s:22:\"apost_shop_coupon_root\";i:0;s:34:\"bpost_shop_coupon_taxonomy_display\";b:0;s:31:\"Spost_shop_coupon_taxonomy_type\";s:4:\"date\";s:27:\"Hpost_shop_webhook_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_shop_webhook_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_shop_webhook_archive_display\";b:0;s:23:\"apost_shop_webhook_root\";i:0;s:35:\"bpost_shop_webhook_taxonomy_display\";b:0;s:32:\"Spost_shop_webhook_taxonomy_type\";s:4:\"date\";s:33:\"Hpost_wpcf7_contact_form_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:43:\"Hpost_wpcf7_contact_form_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:40:\"bpost_wpcf7_contact_form_archive_display\";b:0;s:29:\"apost_wpcf7_contact_form_root\";i:0;s:41:\"bpost_wpcf7_contact_form_taxonomy_display\";b:0;s:38:\"Spost_wpcf7_contact_form_taxonomy_type\";s:4:\"date\";s:27:\"Hpost_vc_grid_item_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_vc_grid_item_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_vc_grid_item_archive_display\";b:0;s:23:\"apost_vc_grid_item_root\";i:0;s:35:\"bpost_vc_grid_item_taxonomy_display\";b:0;s:32:\"Spost_vc_grid_item_taxonomy_type\";s:4:\"date\";s:25:\"Hpost_mc4wp-form_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Hpost_mc4wp-form_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"bpost_mc4wp-form_archive_display\";b:0;s:21:\"apost_mc4wp-form_root\";i:0;s:33:\"bpost_mc4wp-form_taxonomy_display\";b:0;s:30:\"Spost_mc4wp-form_taxonomy_type\";s:4:\"date\";s:39:\"Htax_stm_testimonials_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:49:\"Htax_stm_testimonials_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_stm_works_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_works_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Htax_product_type_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_product_type_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_product_cat_template\";s:264:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Product Category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_product_cat_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:25:\"Htax_product_tag_template\";s:259:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Product Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"Htax_product_tag_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_product_shipping_class_template\";s:262:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Shipping Class archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:46:\"Htax_product_shipping_class_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:22:\"Htax_pa_color_template\";s:253:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% color archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_pa_color_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:27:\"Hpost_stm_partners_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_stm_partners_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_stm_partners_archive_display\";b:0;s:23:\"apost_stm_partners_root\";i:0;s:35:\"bpost_stm_partners_taxonomy_display\";b:0;s:32:\"Spost_stm_partners_taxonomy_type\";s:4:\"date\";s:32:\"bpost_stm_event_taxonomy_referer\";b:0;s:24:\"Hpost_stm_event_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Hpost_stm_event_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:31:\"bpost_stm_event_archive_display\";b:1;s:20:\"apost_stm_event_root\";i:0;s:33:\"bpost_stm_event_hierarchy_display\";b:1;s:30:\"Spost_stm_event_hierarchy_type\";s:18:\"stm_event_category\";s:35:\"bpost_event_member_taxonomy_referer\";b:0;s:27:\"Hpost_event_member_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Hpost_event_member_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"bpost_event_member_archive_display\";b:1;s:23:\"apost_event_member_root\";i:0;s:36:\"bpost_event_member_hierarchy_display\";b:0;s:33:\"Spost_event_member_hierarchy_type\";s:8:\"BCN_DATE\";s:34:\"bpost_stm_service_taxonomy_referer\";b:0;s:35:\"bpost_stm_service_hierarchy_display\";b:1;s:32:\"Spost_stm_service_hierarchy_type\";s:20:\"stm_service_category\";s:34:\"bpost_stm_careers_taxonomy_referer\";b:0;s:35:\"bpost_stm_careers_hierarchy_display\";b:0;s:32:\"Spost_stm_careers_hierarchy_type\";s:8:\"BCN_DATE\";s:32:\"bpost_stm_staff_taxonomy_referer\";b:0;s:33:\"bpost_stm_staff_hierarchy_display\";b:1;s:30:\"Spost_stm_staff_hierarchy_type\";s:18:\"stm_staff_category\";s:32:\"bpost_stm_works_taxonomy_referer\";b:0;s:33:\"bpost_stm_works_hierarchy_display\";b:1;s:30:\"Spost_stm_works_hierarchy_type\";s:18:\"stm_works_category\";s:39:\"bpost_stm_testimonials_taxonomy_referer\";b:0;s:40:\"bpost_stm_testimonials_hierarchy_display\";b:1;s:37:\"Spost_stm_testimonials_hierarchy_type\";s:25:\"stm_testimonials_category\";s:37:\"bpost_stm_vc_sidebar_taxonomy_referer\";b:0;s:38:\"bpost_stm_vc_sidebar_hierarchy_display\";b:0;s:35:\"Spost_stm_vc_sidebar_hierarchy_type\";s:8:\"BCN_DATE\";s:36:\"bpost_stm_portfolio_taxonomy_referer\";b:0;s:28:\"Hpost_stm_portfolio_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"Hpost_stm_portfolio_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"bpost_stm_portfolio_archive_display\";b:1;s:24:\"apost_stm_portfolio_root\";i:0;s:37:\"bpost_stm_portfolio_hierarchy_display\";b:1;s:34:\"Spost_stm_portfolio_hierarchy_type\";s:22:\"stm_portfolio_category\";s:39:\"bpost_scheduled-action_taxonomy_referer\";b:0;s:31:\"Hpost_scheduled-action_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"Hpost_scheduled-action_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"bpost_scheduled-action_archive_display\";b:0;s:27:\"apost_scheduled-action_root\";i:0;s:40:\"bpost_scheduled-action_hierarchy_display\";b:0;s:37:\"Spost_scheduled-action_hierarchy_type\";s:8:\"BCN_DATE\";s:30:\"bpost_product_taxonomy_referer\";b:0;s:31:\"bpost_product_hierarchy_display\";b:1;s:28:\"Spost_product_hierarchy_type\";s:11:\"product_cat\";s:40:\"bpost_product_variation_taxonomy_referer\";b:0;s:41:\"bpost_product_variation_hierarchy_display\";b:1;s:38:\"Spost_product_variation_hierarchy_type\";s:22:\"product_shipping_class\";s:33:\"bpost_shop_order_taxonomy_referer\";b:0;s:34:\"bpost_shop_order_hierarchy_display\";b:0;s:31:\"Spost_shop_order_hierarchy_type\";s:8:\"BCN_DATE\";s:40:\"bpost_shop_order_refund_taxonomy_referer\";b:0;s:41:\"bpost_shop_order_refund_hierarchy_display\";b:0;s:38:\"Spost_shop_order_refund_hierarchy_type\";s:8:\"BCN_DATE\";s:34:\"bpost_shop_coupon_taxonomy_referer\";b:0;s:35:\"bpost_shop_coupon_hierarchy_display\";b:0;s:32:\"Spost_shop_coupon_hierarchy_type\";s:8:\"BCN_DATE\";s:36:\"bpost_vc4_templates_taxonomy_referer\";b:0;s:28:\"Hpost_vc4_templates_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:38:\"Hpost_vc4_templates_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:35:\"bpost_vc4_templates_archive_display\";b:0;s:24:\"apost_vc4_templates_root\";i:0;s:37:\"bpost_vc4_templates_hierarchy_display\";b:0;s:34:\"Spost_vc4_templates_hierarchy_type\";s:8:\"BCN_DATE\";s:41:\"bpost_wpcf7_contact_form_taxonomy_referer\";b:0;s:42:\"bpost_wpcf7_contact_form_hierarchy_display\";b:0;s:39:\"Spost_wpcf7_contact_form_hierarchy_type\";s:8:\"BCN_DATE\";s:35:\"bpost_vc_grid_item_taxonomy_referer\";b:0;s:36:\"bpost_vc_grid_item_hierarchy_display\";b:0;s:33:\"Spost_vc_grid_item_hierarchy_type\";s:8:\"BCN_DATE\";s:42:\"bpost_booked_appointments_taxonomy_referer\";b:0;s:34:\"Hpost_booked_appointments_template\";s:234:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:44:\"Hpost_booked_appointments_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:41:\"bpost_booked_appointments_archive_display\";b:0;s:30:\"apost_booked_appointments_root\";i:0;s:43:\"bpost_booked_appointments_hierarchy_display\";b:1;s:40:\"Spost_booked_appointments_hierarchy_type\";s:23:\"booked_custom_calendars\";s:33:\"bpost_mc4wp-form_taxonomy_referer\";b:0;s:34:\"bpost_mc4wp-form_hierarchy_display\";b:0;s:31:\"Spost_mc4wp-form_hierarchy_type\";s:8:\"BCN_DATE\";s:32:\"Htax_stm_event_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_event_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:34:\"Htax_stm_service_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:44:\"Htax_stm_service_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_stm_staff_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_stm_staff_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_stm_portfolio_category_template\";s:258:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Categories archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:46:\"Htax_stm_portfolio_category_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:26:\"Htax_action-group_template\";s:260:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Action Group archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:36:\"Htax_action-group_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:32:\"Htax_product_visibility_template\";s:251:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:42:\"Htax_product_visibility_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";s:37:\"Htax_booked_custom_calendars_template\";s:263:\"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% Custom Calendar archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>\";s:47:\"Htax_booked_custom_calendars_template_no_anchor\";s:142:\"<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name\">%htitle%</span><meta property=\"position\" content=\"%position%\"></span>\";}s:16:\"addtoany_options\";a:43:{s:8:\"position\";s:6:\"bottom\";s:30:\"display_in_posts_on_front_page\";s:2:\"-1\";s:33:\"display_in_posts_on_archive_pages\";s:2:\"-1\";s:19:\"display_in_excerpts\";s:2:\"-1\";s:16:\"display_in_posts\";s:2:\"-1\";s:16:\"display_in_pages\";s:2:\"-1\";s:15:\"display_in_feed\";s:2:\"-1\";s:10:\"show_title\";s:2:\"-1\";s:7:\"onclick\";s:2:\"-1\";s:9:\"icon_size\";s:2:\"20\";s:6:\"button\";s:10:\"A2A_SVG_32\";s:13:\"button_custom\";s:0:\"\";s:17:\"button_show_count\";s:2:\"-1\";s:6:\"header\";s:0:\"\";s:23:\"additional_js_variables\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:12:\"custom_icons\";s:2:\"-1\";s:16:\"custom_icons_url\";s:1:\"/\";s:17:\"custom_icons_type\";s:3:\"png\";s:10:\"inline_css\";s:1:\"1\";s:5:\"cache\";s:2:\"-1\";s:27:\"display_in_cpt_stm_partners\";s:2:\"-1\";s:26:\"display_in_cpt_stm_careers\";s:2:\"-1\";s:24:\"display_in_cpt_stm_staff\";s:2:\"-1\";s:31:\"display_in_cpt_stm_testimonials\";s:2:\"-1\";s:29:\"display_in_cpt_stm_vc_sidebar\";s:2:\"-1\";s:11:\"button_text\";s:5:\"Share\";s:24:\"special_facebook_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:15:\"active_services\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:11:\"google_plus\";}s:29:\"special_facebook_like_options\";a:1:{s:4:\"verb\";s:4:\"like\";}s:29:\"special_twitter_tweet_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:30:\"special_google_plusone_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:33:\"special_google_plus_share_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:29:\"special_pinterest_pin_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:26:\"display_in_cpt_stm_service\";s:2:\"-1\";s:24:\"display_in_cpt_stm_works\";s:2:\"-1\";s:22:\"display_in_cpt_product\";s:2:\"-1\";s:22:\"display_in_attachments\";s:1:\"1\";s:18:\"custom_icons_width\";s:0:\"\";s:19:\"custom_icons_height\";s:0:\"\";s:24:\"display_in_cpt_stm_event\";s:2:\"-1\";s:27:\"display_in_cpt_event_member\";s:2:\"-1\";s:28:\"display_in_cpt_stm_portfolio\";s:2:\"-1\";}}', 'yes'),
(430, 'stm_hb_settings', 'a:42:{s:13:\"bottom_bar_bg\";s:0:\"\";s:17:\"bottom_bar_bottom\";s:1:\"0\";s:24:\"bottom_bar_bottom_margin\";s:1:\"0\";s:16:\"bottom_bar_color\";s:0:\"\";s:27:\"bottom_bar_link_color_hover\";s:0:\"\";s:21:\"bottom_bar_text_color\";s:0:\"\";s:14:\"bottom_bar_top\";s:1:\"0\";s:21:\"bottom_bar_top_margin\";s:1:\"0\";s:17:\"bottom_bar_zindex\";s:0:\"\";s:14:\"header_builder\";a:2:{s:6:\"center\";a:2:{s:4:\"left\";a:1:{i:0;a:8:{s:9:\"$$hashKey\";s:10:\"object:308\";s:4:\"data\";a:6:{s:4:\"font\";s:2:\"hf\";s:10:\"hoverColor\";s:7:\"#ffffff\";s:2:\"id\";s:23:\"consulting-primary_menu\";s:10:\"innerColor\";s:7:\"#002e5b\";s:15:\"innerHoverColor\";s:7:\"#6c98e1\";s:5:\"style\";s:7:\"default\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:11:\"stm_hb-menu\";s:5:\"label\";s:4:\"Menu\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"2300\";s:6:\"tablet\";s:4:\"2300\";}s:8:\"position\";a:3:{i:0;s:6:\"center\";i:1;s:4:\"left\";i:2;s:1:\"0\";}s:4:\"type\";s:4:\"menu\";}}s:5:\"right\";a:1:{i:0;a:8:{s:9:\"$$hashKey\";s:10:\"object:268\";s:4:\"data\";a:1:{s:5:\"style\";s:9:\"icon_only\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:8:\"disabled\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:14:\"stm_hb-twitter\";s:5:\"label\";s:7:\"Socials\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"1300\";s:6:\"tablet\";s:4:\"1300\";}s:8:\"position\";a:3:{i:0;s:6:\"center\";i:1;s:5:\"right\";i:2;s:1:\"0\";}s:4:\"type\";s:7:\"socials\";}}}s:3:\"top\";a:2:{s:4:\"left\";a:1:{i:0;a:9:{s:9:\"$$hashKey\";s:10:\"object:270\";s:4:\"data\";a:2:{s:3:\"url\";s:0:\"\";s:7:\"uselogo\";s:5:\"false\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:12:\"stm_hb-image\";s:5:\"label\";s:5:\"Image\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"2100\";s:6:\"tablet\";s:4:\"2100\";}s:8:\"position\";a:3:{i:0;s:3:\"top\";i:1;s:4:\"left\";i:2;s:1:\"0\";}s:4:\"type\";s:5:\"image\";s:5:\"value\";s:4:\"7304\";}}s:5:\"right\";a:3:{i:0;a:8:{s:9:\"$$hashKey\";s:10:\"object:305\";s:4:\"data\";a:3:{s:11:\"description\";s:18:\"Telangana - 500082\";s:4:\"icon\";s:16:\"fa fa-map-marker\";s:5:\"title\";s:21:\"Somajiguda, Hyderabad\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:8:\"disabled\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:11:\"stm_hb-leaf\";s:5:\"label\";s:8:\"Icon Box\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"1300\";s:6:\"tablet\";s:4:\"1300\";}s:8:\"position\";a:3:{i:0;s:3:\"top\";i:1;s:5:\"right\";i:2;s:1:\"0\";}s:4:\"type\";s:7:\"iconbox\";}i:1;a:8:{s:9:\"$$hashKey\";s:11:\"object:1298\";s:4:\"data\";a:3:{s:11:\"description\";s:13:\"Sunday CLOSED\";s:4:\"icon\";s:13:\"fa fa-clock-o\";s:5:\"title\";s:22:\"Mon - Sat 8.00 - 18.00\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:8:\"disabled\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:11:\"stm_hb-leaf\";s:5:\"label\";s:8:\"Icon Box\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"1310\";s:6:\"tablet\";s:4:\"1310\";}s:8:\"position\";a:3:{i:0;s:3:\"top\";i:1;s:5:\"right\";i:2;s:1:\"1\";}s:4:\"type\";s:7:\"iconbox\";}i:2;a:8:{s:9:\"$$hashKey\";s:10:\"object:353\";s:4:\"data\";a:3:{s:11:\"description\";s:9:\"Free call\";s:4:\"icon\";s:11:\"fa fa-phone\";s:5:\"title\";s:16:\"+91 964 247 5702\";}s:8:\"disabled\";a:3:{s:7:\"default\";s:8:\"disabled\";s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";}s:4:\"icon\";s:11:\"stm_hb-leaf\";s:5:\"label\";s:8:\"Icon Box\";s:5:\"order\";a:2:{s:6:\"mobile\";s:4:\"1320\";s:6:\"tablet\";s:4:\"1320\";}s:8:\"position\";a:3:{i:0;s:3:\"top\";i:1;s:5:\"right\";i:2;s:1:\"2\";}s:4:\"type\";s:7:\"iconbox\";}}}}s:9:\"header_bg\";s:0:\"\";s:13:\"header_bottom\";s:2:\"17\";s:20:\"header_bottom_margin\";s:1:\"0\";s:12:\"header_color\";s:7:\"#002e5b\";s:17:\"header_text_color\";s:7:\"#ffffff\";s:23:\"header_text_color_hover\";s:7:\"#6c98e1\";s:10:\"header_top\";s:2:\"17\";s:17:\"header_top_margin\";s:1:\"0\";s:13:\"header_zindex\";s:0:\"\";s:6:\"all_bg\";s:0:\"\";s:12:\"all_bg_color\";s:0:\"\";s:19:\"divider_h_socials_0\";s:0:\"\";s:19:\"divider_h_socials_1\";s:0:\"\";s:22:\"header_container_width\";s:1:\"0\";s:20:\"header_content_width\";s:1:\"0\";s:17:\"header_full_width\";s:0:\"\";s:14:\"header_socials\";a:5:{i:0;a:2:{s:6:\"social\";s:14:\"fa fa-facebook\";s:3:\"url\";s:1:\"#\";}i:1;a:2:{s:6:\"social\";s:13:\"fa fa-twitter\";s:3:\"url\";s:1:\"#\";}i:2;a:2:{s:6:\"social\";s:12:\"fa fa-flickr\";s:3:\"url\";s:1:\"#\";}i:3;a:2:{s:6:\"social\";s:12:\"fa fa-google\";s:3:\"url\";s:1:\"#\";}i:4;a:2:{s:6:\"social\";s:14:\"fa fa-dribbble\";s:3:\"url\";s:1:\"#\";}}s:13:\"header_sticky\";s:0:\"\";s:4:\"logo\";s:4:\"7304\";s:9:\"logo_dark\";s:0:\"\";s:10:\"main_color\";s:7:\"#010101\";s:15:\"secondary_color\";s:7:\"#3595d6\";s:11:\"third_color\";s:7:\"#3595d6\";s:10:\"top_bar_bg\";s:0:\"\";s:14:\"top_bar_bottom\";s:2:\"20\";s:21:\"top_bar_bottom_margin\";s:1:\"0\";s:13:\"top_bar_color\";s:7:\"#ffffff\";s:24:\"top_bar_link_color_hover\";s:0:\"\";s:18:\"top_bar_text_color\";s:7:\"#0b2a41\";s:11:\"top_bar_top\";s:2:\"20\";s:18:\"top_bar_top_margin\";s:1:\"0\";s:14:\"top_bar_zindex\";s:0:\"\";}', 'yes'),
(435, '_transient_product_query-transient-version', '1651824544', 'yes'),
(436, 'category_children', 'a:0:{}', 'yes'),
(437, 'elementor_library_category_children', 'a:0:{}', 'yes'),
(438, 'stm_testimonials_category_children', 'a:0:{}', 'yes'),
(439, 'stm_event_category_children', 'a:0:{}', 'yes'),
(440, 'stm_service_category_children', 'a:0:{}', 'yes'),
(441, 'stm_works_category_children', 'a:0:{}', 'yes'),
(442, 'stm_staff_category_children', 'a:0:{}', 'yes'),
(443, 'stm_portfolio_category_children', 'a:0:{}', 'yes'),
(444, 'product_cat_children', 'a:2:{i:70;a:2:{i:0;i:77;i:1;i:98;}i:84;a:2:{i:0;i:94;i:1;i:105;}}', 'yes'),
(446, 'rs_image_meta_todo', 'a:0:{}', 'yes'),
(447, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-2\";}s:24:\"consulting-right-sidebar\";a:5:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:23:\"consulting-left-sidebar\";a:0:{}s:15:\"consulting-shop\";a:4:{i:0;s:32:\"woocommerce_product_categories-2\";i:1;s:26:\"woocommerce_price_filter-2\";i:2;s:32:\"woocommerce_top_rated_products-2\";i:3;s:31:\"woocommerce_product_tag_cloud-2\";}s:19:\"consulting-footer-1\";a:0:{}s:19:\"consulting-footer-2\";a:1:{i:0;s:6:\"text-5\";}s:19:\"consulting-footer-3\";a:1:{i:0;s:6:\"text-4\";}s:19:\"consulting-footer-4\";a:1:{i:0;s:10:\"contacts-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(448, 'widget_mc4wp_form_widget', 'a:2:{i:4;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(449, 'booked_defaults', 'a:12:{s:3:\"Mon\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Mon-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}s:3:\"Tue\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Tue-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}s:3:\"Wed\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Wed-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}s:3:\"Thu\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Thu-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}s:3:\"Fri\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Fri-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}s:3:\"Sat\";a:1:{s:9:\"0900-1000\";i:5;}s:11:\"Sat-details\";a:1:{s:9:\"0900-1000\";a:1:{s:5:\"title\";s:38:\"Develop the next-generation technology\";}}}', 'yes'),
(450, 'booked_light_color', '#002e5b', 'yes'),
(451, 'booked_button_color', '#6c98e1', 'yes'),
(452, 'booked_dark_color', '#6c98e1', 'yes'),
(453, 'shop_catalog_image_size[width]', '175', 'yes'),
(454, 'shop_catalog_image_size[height]', '258', 'yes'),
(455, 'shop_single_image_size[width]', '175', 'yes'),
(456, 'shop_single_image_size[height]', '258', 'yes'),
(457, 'shop_thumbnail_image_size[width]', '54', 'yes'),
(458, 'shop_thumbnail_image_size[height]', '79', 'yes'),
(459, 'consulting_layout', 'layout_berlin', 'yes'),
(464, 'elementor_active_kit', '6894', 'yes'),
(465, 'tp_twitter_plugin_tweets', 's:2474:\"a:10:{i:0;a:3:{s:10:\"created_at\";s:30:\"Wed Dec 23 11:20:42 +0000 2020\";s:4:\"text\";s:58:\"Warm Christmas Gifts by Stylemix - https://t.co/3gw6N6QDWV\";s:9:\"status_id\";s:19:\"1341705286260822017\";}i:1;a:3:{s:10:\"created_at\";s:30:\"Wed Sep 23 07:25:16 +0000 2020\";s:4:\"text\";s:65:\"Top 5 Plugins to Scale-up Your Business - https://t.co/7tnT7uR4xF\";s:9:\"status_id\";s:19:\"1308668739324440576\";}i:2;a:3:{s:10:\"created_at\";s:30:\"Tue Sep 15 15:51:45 +0000 2020\";s:4:\"text\";s:84:\"Try Most Wanted Education WordPress Theme with  Elementor - https://t.co/BOMI2r09BV\";s:9:\"status_id\";s:19:\"1305897101092696065\";}i:3;a:3:{s:10:\"created_at\";s:30:\"Tue Sep 08 12:16:24 +0000 2020\";s:4:\"text\";s:143:\"MasterStudy LMS Version 4.0 is on its way!\n⠀\nIt is now compatible with Elementor, has its own certificate builder,… https://t.co/DZ1a2TrCpX\";s:9:\"status_id\";s:19:\"1303306189724438528\";}i:4;a:3:{s:10:\"created_at\";s:30:\"Wed Aug 19 12:24:03 +0000 2020\";s:4:\"text\";s:141:\"Birthday Sale!\n\nOn Envato\'s birthday, you have a chance to get the best-selling WordPress themes from Stylemix wit… https://t.co/EhBDr7nVGo\";s:9:\"status_id\";s:19:\"1296060356725530625\";}i:5;a:3:{s:10:\"created_at\";s:30:\"Wed May 20 11:40:46 +0000 2020\";s:4:\"text\";s:143:\"Looking for a good system for your online courses? MasterStudy LMS is what you need!\n⠀\n‍ Get comprehensive and f… https://t.co/IaxqhgIxFO\";s:9:\"status_id\";s:19:\"1263072171104051201\";}i:6;a:3:{s:10:\"created_at\";s:30:\"Mon Apr 06 13:20:08 +0000 2020\";s:4:\"text\";s:118:\"+70,000 Sales on Envato Market! \n\nStylemixThemes has overcome the number of 70,000 sales on… https://t.co/bs4EXRdQ0T\";s:9:\"status_id\";s:19:\"1247152108475797511\";}i:7;a:3:{s:10:\"created_at\";s:30:\"Mon Mar 30 12:20:07 +0000 2020\";s:4:\"text\";s:146:\"Special #STAYHOME offer — 40% off Smarty\nThe ultimate WordPress theme for university, school &amp; kindergarten needs… https://t.co/HhCxzdIhMo\";s:9:\"status_id\";s:19:\"1244600289992282114\";}i:8;a:3:{s:10:\"created_at\";s:30:\"Fri Mar 27 12:18:33 +0000 2020\";s:4:\"text\";s:140:\"Mega March Sale arrives at StylemixThemes. 40% off top deals:\n▪️Motors: https://t.co/EHHz6keSQf\n▪️Splash:… https://t.co/9YKGFgRVet\";s:9:\"status_id\";s:19:\"1243512734697873411\";}i:9;a:3:{s:10:\"created_at\";s:30:\"Tue Mar 24 11:49:16 +0000 2020\";s:4:\"text\";s:142:\"Transit to online education with MasterStudy LMS and Google Classroom integration! Easily import classes to your we… https://t.co/py1kP0O5Ts\";s:9:\"status_id\";s:19:\"1242418200370917376\";}}\";', 'yes'),
(466, 'tp_twitter_plugin_last_cache_time', '1617689442', 'yes'),
(480, 'revslider_update_revision_current', '6.2.0', 'yes'),
(496, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(521, 'WPLANG', '', 'yes'),
(523, 'https_migration_required', '1', 'yes'),
(528, 'stm_last_edited_hb', 'stm_hb_settings', 'yes'),
(566, '_transient_shipping-transient-version', '1617635148', 'yes'),
(655, '_transient_woocommerce_reports-transient-version', '1646960229', 'yes'),
(680, 'secret_key', 'cfiZ[LH*wKG]fhI$0H;IO44Bp5Jj~*y!t-/x$}.&a,0XW=~3o/RzP=>V8M>O+`-y', 'no'),
(809, 'duplicate_page_options', 'a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}', 'yes'),
(810, 'stm_hb_variants', 'a:1:{s:15:\"stm_hb_settings\";s:14:\"Default Header\";}', 'yes'),
(830, 'woocommerce_maybe_regenerate_images_hash', '991b1ca641921cf0f5baf7a2fe85861b', 'yes'),
(937, '_transient_health-check-site-status-result', '{\"good\":17,\"recommended\":6,\"critical\":0}', 'yes'),
(2341, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:26:\"mohammed.jafar02@gmail.com\";s:7:\"version\";s:5:\"6.5.2\";s:9:\"timestamp\";i:1712707890;}', 'no'),
(2413, 'elementor_scheme_color', 'a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}', 'yes'),
(2414, 'elementor_scheme_typography', 'a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}', 'yes'),
(2415, 'elementor_scheme_color-picker', 'a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}', 'yes'),
(2417, '_elementor_global_css', 'a:6:{s:4:\"time\";i:1618550841;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}', 'yes'),
(6024, 'woocommerce_inbox_variant_assignment', '1', 'yes'),
(6027, 'woocommerce_onboarding_profile', 'a:1:{s:9:\"completed\";b:1;}', 'yes'),
(6031, 'wc_remote_inbox_notifications_wca_updated', '', 'yes'),
(8532, 'widget_block', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(20492, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
(20493, 'db_upgraded', '1', 'yes'),
(28379, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(28382, 'woocommerce_admin_version', '2.3.2', 'yes'),
(62180, 'user_count', '1', 'no'),
(136667, 'fs_active_plugins', 'O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:20:\"bookit/libs/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.5\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1700463334;s:11:\"plugin_path\";s:17:\"bookit/bookit.php\";}}s:7:\"abspath\";s:29:\"/home/qualstream/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:17:\"bookit/bookit.php\";s:8:\"sdk_path\";s:20:\"bookit/libs/freemius\";s:7:\"version\";s:5:\"2.4.5\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1700463334;}}', 'yes'),
(136668, 'fs_debug_mode', '', 'yes');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(136669, 'fs_accounts', 'a:5:{s:21:\"id_slug_type_path_map\";a:1:{i:8486;a:3:{s:4:\"slug\";s:6:\"bookit\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:17:\"bookit/bookit.php\";}}s:11:\"plugin_data\";a:1:{s:6:\"bookit\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"bookit/bookit.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1687278752;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"2.3.8\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"qualstream.net\";s:9:\"server_ip\";s:12:\"66.249.66.40\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1687311599;s:7:\"version\";s:5:\"2.3.8\";}s:15:\"prev_is_premium\";b:0;}}s:13:\"file_slug_map\";a:1:{s:17:\"bookit/bookit.php\";s:6:\"bookit\";}s:7:\"plugins\";a:1:{s:6:\"bookit\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:47:\"Booking Calendar | Appointment Booking | BookIt\";s:4:\"slug\";s:6:\"bookit\";s:12:\"premium_slug\";s:14:\"bookit-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:17:\"bookit/bookit.php\";s:7:\"version\";s:5:\"2.3.8\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_2cc14bc8c7ec47520d21f0b7d99e7\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"8486\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"347c8bfdc98504db7bbc3ed7a4d996be\";}', 'yes'),
(136705, '_transient_stm_bookit_notice_setting', 'a:3:{s:9:\"show_time\";i:1687569251;s:4:\"step\";i:0;s:11:\"prev_action\";s:0:\"\";}', 'yes'),
(136706, 'notification_enqueue', 'a:2:{s:4:\"main\";a:0:{}s:6:\"second\";a:0:{}}', 'yes'),
(136709, 'fs_gdpr', 'a:1:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}', 'yes'),
(139996, 'elementor_log', 'a:2:{s:32:\"75b04d4c314e24dce495d0b6c85cfa1e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-07-27 22:47:03\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:75:\"Creation of dynamic property Elementor\\Plugin::$icons_manager is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:420;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-11-14 02:07:48\";i:1;s:19:\"2023-11-14 06:36:59\";i:2;s:19:\"2023-11-14 08:06:20\";i:3;s:19:\"2023-11-15 10:00:32\";i:4;s:19:\"2023-11-15 10:20:34\";i:5;s:19:\"2023-11-15 10:33:50\";i:6;s:19:\"2023-11-15 10:33:50\";i:7;s:19:\"2023-11-15 10:33:50\";i:8;s:19:\"2023-11-15 20:51:46\";i:9;s:19:\"2023-11-15 20:51:54\";i:10;s:19:\"2023-11-15 20:51:55\";i:11;s:19:\"2023-11-15 20:51:56\";i:12;s:19:\"2023-11-15 20:51:56\";i:13;s:19:\"2023-11-15 20:52:01\";i:14;s:19:\"2023-11-16 06:44:41\";i:15;s:19:\"2023-11-16 17:06:14\";i:16;s:19:\"2023-11-16 17:06:22\";i:17;s:19:\"2023-11-16 17:06:23\";i:18;s:19:\"2023-11-16 17:06:24\";i:19;s:19:\"2023-11-16 17:06:24\";i:20;s:19:\"2023-11-16 17:06:29\";i:21;s:19:\"2023-11-16 18:49:46\";i:22;s:19:\"2023-11-16 21:44:45\";i:23;s:19:\"2023-11-17 01:06:37\";i:24;s:19:\"2023-11-17 09:40:21\";i:25;s:19:\"2023-11-17 10:23:41\";i:26;s:19:\"2023-11-17 10:26:23\";i:27;s:19:\"2023-11-17 10:26:47\";i:28;s:19:\"2023-11-17 13:10:08\";i:29;s:19:\"2023-11-17 18:36:50\";i:30;s:19:\"2023-11-17 18:38:13\";i:31;s:19:\"2023-11-17 18:54:37\";i:32;s:19:\"2023-11-18 00:57:57\";i:33;s:19:\"2023-11-18 05:15:25\";i:34;s:19:\"2023-11-18 05:23:07\";i:35;s:19:\"2023-11-18 14:34:37\";i:36;s:19:\"2023-11-18 18:13:21\";i:37;s:19:\"2023-11-19 08:39:47\";i:38;s:19:\"2023-11-19 15:28:50\";i:39;s:19:\"2023-11-19 15:30:06\";i:40;s:19:\"2023-11-19 21:33:22\";i:41;s:19:\"2023-11-20 01:13:57\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:75:\"Creation of dynamic property Elementor\\Plugin::$icons_manager is deprecated\";s:4:\"file\";s:78:\"/home2/qualstream/public_html/wp-content/plugins/elementor/includes/plugin.php\";s:4:\"line\";i:605;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:78:\"/home2/qualstream/public_html/wp-content/plugins/elementor/includes/plugin.php\";s:7:\"\0*\0line\";i:605;}s:32:\"703b6d9b8678e9bbaf672bcbf00151df\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-07-28 03:26:45\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:233:\"Return type of Elementor\\Core\\Utils\\Collection::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:40;s:14:\"\0*\0times_dates\";a:40:{i:0;s:19:\"2023-07-28 03:26:45\";i:1;s:19:\"2023-07-30 20:57:38\";i:2;s:19:\"2023-08-17 15:06:51\";i:3;s:19:\"2023-09-04 14:04:56\";i:4;s:19:\"2023-09-04 14:06:52\";i:5;s:19:\"2023-09-04 14:06:57\";i:6;s:19:\"2023-09-04 14:07:00\";i:7;s:19:\"2023-09-04 14:07:02\";i:8;s:19:\"2023-09-04 22:26:45\";i:9;s:19:\"2023-09-05 16:09:09\";i:10;s:19:\"2023-09-07 13:19:50\";i:11;s:19:\"2023-09-07 13:22:15\";i:12;s:19:\"2023-09-07 13:22:16\";i:13;s:19:\"2023-09-07 13:22:37\";i:14;s:19:\"2023-09-07 13:22:39\";i:15;s:19:\"2023-09-07 13:22:40\";i:16;s:19:\"2023-09-07 13:22:41\";i:17;s:19:\"2023-10-25 18:05:48\";i:18;s:19:\"2023-11-12 20:23:07\";i:19;s:19:\"2023-11-12 20:23:33\";i:20;s:19:\"2023-11-12 20:23:40\";i:21;s:19:\"2023-11-12 20:23:41\";i:22;s:19:\"2023-11-12 20:25:09\";i:23;s:19:\"2023-11-17 18:37:04\";i:24;s:19:\"2023-11-29 18:22:52\";i:25;s:19:\"2023-12-08 10:36:06\";i:26;s:19:\"2023-12-23 12:05:43\";i:27;s:19:\"2023-12-29 15:32:50\";i:28;s:19:\"2024-01-19 07:58:20\";i:29;s:19:\"2024-01-25 04:02:55\";i:30;s:19:\"2024-01-26 01:30:00\";i:31;s:19:\"2024-01-26 14:45:12\";i:32;s:19:\"2024-01-31 04:19:57\";i:33;s:19:\"2024-02-03 08:47:04\";i:34;s:19:\"2024-03-07 14:44:24\";i:35;s:19:\"2024-03-16 03:48:23\";i:36;s:19:\"2024-03-16 11:42:30\";i:37;s:19:\"2024-03-19 09:58:02\";i:38;s:19:\"2024-03-25 01:39:18\";i:39;s:19:\"2024-03-27 11:14:30\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:233:\"Return type of Elementor\\Core\\Utils\\Collection::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice\";s:4:\"file\";s:84:\"/home2/qualstream/public_html/wp-content/plugins/elementor/core/utils/collection.php\";s:4:\"line\";i:298;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:84:\"/home2/qualstream/public_html/wp-content/plugins/elementor/core/utils/collection.php\";s:7:\"\0*\0line\";i:298;}}', 'no'),
(151713, 'wp_attachment_pages_enabled', '1', 'yes'),
(153262, 'a2_litespeed_lock', 'a:3:{s:6:\"locked\";i:0;s:5:\"theme\";s:10:\"Consulting\";s:7:\"plugins\";s:716:\"a2-optimized-wp/a2-optimized.php,bookit/bookit.php,breadcrumb-navxt/breadcrumb-navxt.php,consulting-elementor-widgets/consulting-elementor-widgets.php,contact-form-7/wp-contact-form-7.php,cost-calculator-builder/cost-calculator-builder.php,custom-elementor-icons/custom-elementor-icons.php,duplicate-page/duplicatepage.php,elementor/elementor.php,eroom-zoom-meetings-webinar/eroom-zoom-meetings-webinar.php,recent-tweets-widget/recent-tweets.php,revslider/revslider.php,instagram-feed/instagram-feed.php,stm-post-type/stm-post-type.php,stm-importer/stm-importer.php,stm-templates-library/stm-templates-library.php,woocommerce/woocommerce.php,pearl-header-builder/pearl_header_builder.php,js_composer/js_composer.php,\";}', 'yes'),
(163875, '_transient_timeout_wc_term_counts', '1712903042', 'no'),
(163876, '_transient_wc_term_counts', 'a:18:{i:105;s:1:\"1\";i:68;s:1:\"4\";i:70;s:1:\"3\";i:77;s:1:\"2\";i:84;s:1:\"2\";i:91;s:1:\"1\";i:94;s:1:\"1\";i:98;s:1:\"1\";i:15;s:0:\"\";i:71;s:1:\"2\";i:66;s:1:\"1\";i:67;s:1:\"1\";i:81;s:1:\"1\";i:85;s:1:\"1\";i:90;s:1:\"1\";i:100;s:1:\"1\";i:101;s:1:\"1\";i:104;s:1:\"1\";}', 'no'),
(166593, '_site_transient_timeout_php_check_5d752ba2016ea61f3d144fd3524590fe', '1713271068', 'no'),
(166594, '_site_transient_php_check_5d752ba2016ea61f3d144fd3524590fe', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(166711, '_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.5.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.2\";s:7:\"version\";s:5:\"6.5.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1712752762;s:15:\"version_checked\";s:5:\"6.5.2\";s:12:\"translations\";a:0:{}}', 'no'),
(166720, '_transient_timeout__woocommerce_helper_updates', '1712761491', 'no'),
(166721, '_transient__woocommerce_helper_updates', 'a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1712718291;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}', 'no'),
(166773, '_transient_timeout__woocommerce_helper_subscriptions', '1712753662', 'no'),
(166774, '_transient__woocommerce_helper_subscriptions', 'a:0:{}', 'no'),
(166775, '_site_transient_timeout_theme_roots', '1712754562', 'no'),
(166776, '_site_transient_theme_roots', 'a:7:{s:10:\"consulting\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}', 'no'),
(166777, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1712752763;s:7:\"checked\";a:7:{s:10:\"consulting\";s:3:\"6.0\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.2\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:6:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:10:\"consulting\";a:6:{s:5:\"theme\";s:10:\"consulting\";s:11:\"new_version\";s:5:\"1.4.5\";s:3:\"url\";s:40:\"https://wordpress.org/themes/consulting/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/consulting.1.4.5.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'no'),
(166778, '_site_transient_update_plugins', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1712752763;s:8:\"response\";a:15:{s:32:\"a2-optimized-wp/a2-optimized.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/a2-optimized-wp\";s:4:\"slug\";s:15:\"a2-optimized-wp\";s:6:\"plugin\";s:32:\"a2-optimized-wp/a2-optimized.php\";s:11:\"new_version\";s:7:\"3.0.8.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/a2-optimized-wp/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/a2-optimized-wp.3.0.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/a2-optimized-wp/assets/icon-256x256.png?rev=2961749\";s:2:\"1x\";s:68:\"https://ps.w.org/a2-optimized-wp/assets/icon-128x128.png?rev=2961749\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/a2-optimized-wp/assets/banner-1544x500.jpg?rev=2961749\";s:2:\"1x\";s:70:\"https://ps.w.org/a2-optimized-wp/assets/banner-772x250.jpg?rev=2961749\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.1\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}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:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.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.4.4\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:17:\"bookit/bookit.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:20:\"w.org/plugins/bookit\";s:4:\"slug\";s:6:\"bookit\";s:6:\"plugin\";s:17:\"bookit/bookit.php\";s:11:\"new_version\";s:5:\"2.4.6\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/bookit/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/bookit.2.4.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/bookit/assets/icon-256x256.png?rev=2385587\";s:2:\"1x\";s:59:\"https://ps.w.org/bookit/assets/icon-128x128.png?rev=2385587\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/bookit/assets/banner-1544x500.jpg?rev=2385587\";s:2:\"1x\";s:61:\"https://ps.w.org/bookit/assets/banner-772x250.jpg?rev=2385587\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.3.4\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"7.3.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.4.4\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.9.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:51:\"cost-calculator-builder/cost-calculator-builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/cost-calculator-builder\";s:4:\"slug\";s:23:\"cost-calculator-builder\";s:6:\"plugin\";s:51:\"cost-calculator-builder/cost-calculator-builder.php\";s:11:\"new_version\";s:6:\"3.1.92\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/cost-calculator-builder/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/cost-calculator-builder.3.1.92.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/cost-calculator-builder/assets/icon-256x256.gif?rev=2764454\";s:2:\"1x\";s:76:\"https://ps.w.org/cost-calculator-builder/assets/icon-128x128.gif?rev=2764454\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/cost-calculator-builder/assets/banner-1544x500.png?rev=2764454\";s:2:\"1x\";s:78:\"https://ps.w.org/cost-calculator-builder/assets/banner-772x250.png?rev=2764454\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.4.4\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:49:\"custom-elementor-icons/custom-elementor-icons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/custom-elementor-icons\";s:4:\"slug\";s:22:\"custom-elementor-icons\";s:6:\"plugin\";s:49:\"custom-elementor-icons/custom-elementor-icons.php\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/custom-elementor-icons/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/custom-elementor-icons.1.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/custom-elementor-icons/assets/icon-256x256.png?rev=2469427\";s:2:\"1x\";s:75:\"https://ps.w.org/custom-elementor-icons/assets/icon-128x128.png?rev=2469427\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/custom-elementor-icons/assets/banner-1544x500.jpg?rev=2469427\";s:2:\"1x\";s:77:\"https://ps.w.org/custom-elementor-icons/assets/banner-772x250.jpg?rev=2469427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:5:\"6.3.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.20.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:59:\"eroom-zoom-meetings-webinar/eroom-zoom-meetings-webinar.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:41:\"w.org/plugins/eroom-zoom-meetings-webinar\";s:4:\"slug\";s:27:\"eroom-zoom-meetings-webinar\";s:6:\"plugin\";s:59:\"eroom-zoom-meetings-webinar/eroom-zoom-meetings-webinar.php\";s:11:\"new_version\";s:6:\"1.4.18\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/eroom-zoom-meetings-webinar/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/eroom-zoom-meetings-webinar.1.4.18.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/eroom-zoom-meetings-webinar/assets/icon-256x256.png?rev=2555671\";s:2:\"1x\";s:80:\"https://ps.w.org/eroom-zoom-meetings-webinar/assets/icon-128x128.png?rev=2555671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/eroom-zoom-meetings-webinar/assets/banner-1544x500.png?rev=2284794\";s:2:\"1x\";s:82:\"https://ps.w.org/eroom-zoom-meetings-webinar/assets/banner-772x250.png?rev=2284794\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.4.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:65:\"gdpr-compliance-cookie-consent/gdpr-compliance-cookie-consent.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:44:\"w.org/plugins/gdpr-compliance-cookie-consent\";s:4:\"slug\";s:30:\"gdpr-compliance-cookie-consent\";s:6:\"plugin\";s:65:\"gdpr-compliance-cookie-consent/gdpr-compliance-cookie-consent.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/gdpr-compliance-cookie-consent/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/gdpr-compliance-cookie-consent.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/gdpr-compliance-cookie-consent/assets/icon-256x256.png?rev=2111971\";s:2:\"1x\";s:83:\"https://ps.w.org/gdpr-compliance-cookie-consent/assets/icon-128x128.png?rev=2111971\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/gdpr-compliance-cookie-consent/assets/banner-1544x500.png?rev=2111971\";s:2:\"1x\";s:85:\"https://ps.w.org/gdpr-compliance-cookie-consent/assets/banner-772x250.png?rev=2111978\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:6:\"6.2.10\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/instagram-feed.6.2.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-256x256.png?rev=2700807\";s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2700807\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382\";s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.7.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:45:\"pearl-header-builder/pearl_header_builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:34:\"w.org/plugins/pearl-header-builder\";s:4:\"slug\";s:20:\"pearl-header-builder\";s:6:\"plugin\";s:45:\"pearl-header-builder/pearl_header_builder.php\";s:11:\"new_version\";s:5:\"1.3.6\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/pearl-header-builder/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/pearl-header-builder.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/pearl-header-builder/assets/icon-256x256.png?rev=1790528\";s:2:\"1x\";s:73:\"https://ps.w.org/pearl-header-builder/assets/icon-128x128.png?rev=1790528\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/pearl-header-builder/assets/banner-1544x500.jpg?rev=1790528\";s:2:\"1x\";s:75:\"https://ps.w.org/pearl-header-builder/assets/banner-772x250.jpg?rev=1790531\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.3.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:3:\"7.5\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}}', 'no'),
(166794, '_transient_timeout_wc_onboarding_product_data', '1712850772', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(166795, '_transient_wc_onboarding_product_data', 'a:6:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 10 Apr 2024 15:52:52 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"14645\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:4:\"x-rq\";s:15:\"bur5 85 188 443\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:1:\"9\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:83987:\"{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\",\"is_installable\":true},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":4.4,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":true},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.7,\"reviews_count\":21,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":true},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.4,\"reviews_count\":16,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":true},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":true},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\",\"is_installable\":true},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach millions of engaged shoppers with Google Ads. Drive more sales with Performance Max, sync your products to Google Merchant Center, and turn more shoppers into customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.7,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":true},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.4,\"reviews_count\":34,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Square\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.3,\"reviews_count\":106,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":true},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":150,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":true},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.2,\"reviews_count\":38,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":true},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":3.7,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":3,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store. From sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.1,\"reviews_count\":31,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":3.4,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":131,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\",\"is_installable\":true},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":3,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/WooCommerce_Brands_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;279.00\",\"raw_price\":279,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":80,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":true},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":5,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\",\"is_installable\":true},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":true},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":2.9,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":3,\"reviews_count\":38,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":3.8,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":3.6,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":true},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":114,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":2.5,\"reviews_count\":58,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":3.3,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":109,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3.1,\"reviews_count\":20,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.4,\"reviews_count\":75,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":2.2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"PayPal Braintree\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\",\"is_installable\":true},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon S3 Storage for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":13,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\",\"is_installable\":false},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":1.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automated marketing & order fulfillment for Woo stores. Zapier integration with thousands of popular apps, no code.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.2,\"reviews_count\":61,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":2.3,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/07\\/Returns_and_Warranty_Woo.png\",\"is_installable\":false},{\"title\":\"Quick View for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/WooCommerce_Order_Barcodes_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":1.5,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce_Bookings_Availability_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":3.3,\"reviews_count\":4,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":true},{\"title\":\"360\\u00ba Image for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\",\"is_installable\":false},{\"title\":\"Photography for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":2.6,\"reviews_count\":5,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\",\"is_installable\":false},{\"title\":\"Products Compare for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\",\"is_installable\":false},{\"title\":\"Software Add-on for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":3.3,\"reviews_count\":3,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\",\"is_installable\":false},{\"title\":\"Store Catalog PDF Download for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\",\"is_installable\":false},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.4,\"reviews_count\":184,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":61,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\",\"is_installable\":false},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\",\"is_installable\":false},{\"title\":\"Mercado Pago\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and Mercado Pago account money. Offer secure and protected payments with the leading processor in Latin America.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\",\"is_installable\":true},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Storefront Extensions Bundle\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All the tools you\'ll need to define your style and customize your Storefront.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-extensions-bundle\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;69.00\",\"raw_price\":69,\"currency_symbol\":\"&#36;\",\"hash\":null,\"slug\":\"storefront-extensions-bundle\",\"id\":2213791,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/Storefront_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kco-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":2,\"reviews_count\":3,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\",\"is_installable\":true},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":103,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Composite_Products_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kp-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.9,\"reviews_count\":15,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\",\"is_installable\":true},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.5,\"reviews_count\":19,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":46,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/Conditional_Shipping_Payments_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.6,\"reviews_count\":32,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/recaptcha.jpg\",\"is_installable\":false},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":3.8,\"reviews_count\":8,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\",\"is_installable\":true},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Eway\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/eway\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":18,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":4.2,\"reviews_count\":9,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\",\"is_installable\":false},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":3.2,\"reviews_count\":5,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\",\"is_installable\":false},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\",\"is_installable\":false},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The perfect Search Engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":172,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\",\"is_installable\":false},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/One_Page_Checkout_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Viva.com Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Integrate the Viva.com payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":4.9,\"reviews_count\":11,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\",\"is_installable\":false},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":4.6,\"reviews_count\":8,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":4.6,\"reviews_count\":12,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Mollie Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Mollie-logo-dark__2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer global and local payment methods, get onboarded in minutes, and supported in your language.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mollie-payments-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a632d45f-8ff2-4c8f-b0b4-b46395b21bfc\",\"slug\":\"mollie-payments-for-woocommerce\",\"id\":7304393,\"rating\":3.5,\"reviews_count\":8,\"vendor_name\":\"Mollie\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mollie\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Woo-Mollie-x6tgu8.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":2.9,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-icon-160x160-1.png\",\"is_installable\":false},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store with the UK\\u2019s most trusted payment solution.\\u00a0A selection of 3 gateway integrations to suit your business needs including Direct, Form and\\u00a0Pi.\\u00a0Always in front, with your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":3.1,\"reviews_count\":13,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK_160x160.png\",\"is_installable\":false}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;s:11:\"\0*\0response\";O:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:83987:\"{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\",\"is_installable\":true},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":4.4,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":true},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.7,\"reviews_count\":21,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":true},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.4,\"reviews_count\":16,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":true},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":true},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\",\"is_installable\":true},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach millions of engaged shoppers with Google Ads. Drive more sales with Performance Max, sync your products to Google Merchant Center, and turn more shoppers into customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.7,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":true},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.4,\"reviews_count\":34,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Square\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.3,\"reviews_count\":106,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":true},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":150,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":true},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.2,\"reviews_count\":38,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":true},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":3.7,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":3,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store. From sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.1,\"reviews_count\":31,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":3.4,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":131,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\",\"is_installable\":true},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":3,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/WooCommerce_Brands_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;279.00\",\"raw_price\":279,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":80,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":true},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":5,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\",\"is_installable\":true},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":true},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":2.9,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":3,\"reviews_count\":38,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":3.8,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":3.6,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":true},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":114,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":2.5,\"reviews_count\":58,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":3.3,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":109,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3.1,\"reviews_count\":20,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.4,\"reviews_count\":75,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":2.2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"PayPal Braintree\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\",\"is_installable\":true},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon S3 Storage for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":13,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\",\"is_installable\":false},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":1.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automated marketing & order fulfillment for Woo stores. Zapier integration with thousands of popular apps, no code.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.2,\"reviews_count\":61,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":2.3,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/07\\/Returns_and_Warranty_Woo.png\",\"is_installable\":false},{\"title\":\"Quick View for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/WooCommerce_Order_Barcodes_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":1.5,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce_Bookings_Availability_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":3.3,\"reviews_count\":4,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":true},{\"title\":\"360\\u00ba Image for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\",\"is_installable\":false},{\"title\":\"Photography for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":2.6,\"reviews_count\":5,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\",\"is_installable\":false},{\"title\":\"Products Compare for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\",\"is_installable\":false},{\"title\":\"Software Add-on for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":3.3,\"reviews_count\":3,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\",\"is_installable\":false},{\"title\":\"Store Catalog PDF Download for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\",\"is_installable\":false},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.4,\"reviews_count\":184,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":61,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\",\"is_installable\":false},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\",\"is_installable\":false},{\"title\":\"Mercado Pago\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and Mercado Pago account money. Offer secure and protected payments with the leading processor in Latin America.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\",\"is_installable\":true},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Storefront Extensions Bundle\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All the tools you\'ll need to define your style and customize your Storefront.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-extensions-bundle\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;69.00\",\"raw_price\":69,\"currency_symbol\":\"&#36;\",\"hash\":null,\"slug\":\"storefront-extensions-bundle\",\"id\":2213791,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/Storefront_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kco-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":2,\"reviews_count\":3,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\",\"is_installable\":true},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":103,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Composite_Products_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kp-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.9,\"reviews_count\":15,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\",\"is_installable\":true},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.5,\"reviews_count\":19,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":46,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/Conditional_Shipping_Payments_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.6,\"reviews_count\":32,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/recaptcha.jpg\",\"is_installable\":false},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":3.8,\"reviews_count\":8,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\",\"is_installable\":true},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Eway\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/eway\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":18,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":4.2,\"reviews_count\":9,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\",\"is_installable\":false},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":3.2,\"reviews_count\":5,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\",\"is_installable\":false},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\",\"is_installable\":false},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The perfect Search Engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":172,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\",\"is_installable\":false},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/One_Page_Checkout_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Viva.com Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Integrate the Viva.com payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":4.9,\"reviews_count\":11,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\",\"is_installable\":false},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":4.6,\"reviews_count\":8,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":4.6,\"reviews_count\":12,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Mollie Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Mollie-logo-dark__2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer global and local payment methods, get onboarded in minutes, and supported in your language.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mollie-payments-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a632d45f-8ff2-4c8f-b0b4-b46395b21bfc\",\"slug\":\"mollie-payments-for-woocommerce\",\"id\":7304393,\"rating\":3.5,\"reviews_count\":8,\"vendor_name\":\"Mollie\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mollie\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Woo-Mollie-x6tgu8.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":2.9,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-icon-160x160-1.png\",\"is_installable\":false},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store with the UK\\u2019s most trusted payment solution.\\u00a0A selection of 3 gateway integrations to suit your business needs including Direct, Form and\\u00a0Pi.\\u00a0Always in front, with your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":3.1,\"reviews_count\":13,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK_160x160.png\",\"is_installable\":false}]}\";s:3:\"raw\";s:84668:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Wed, 10 Apr 2024 15:52:52 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 14645\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nX-rq: bur5 85 188 443\r\nContent-Encoding: gzip\r\nAge: 9\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\nStrict-Transport-Security: max-age=31536000\r\n\r\n{\"products\":[{\"title\":\"Google Analytics for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\",\"is_installable\":true},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":4.4,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\",\"is_installable\":true},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.7,\"reviews_count\":21,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\",\"is_installable\":true},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.4,\"reviews_count\":16,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\",\"is_installable\":true},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\",\"is_installable\":true},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\",\"is_installable\":true},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach millions of engaged shoppers with Google Ads. Drive more sales with Performance Max, sync your products to Google Merchant Center, and turn more shoppers into customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.7,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\",\"is_installable\":true},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.4,\"reviews_count\":34,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/Product_Addons_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Square\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.3,\"reviews_count\":106,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\",\"is_installable\":true},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\",\"is_installable\":false},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\",\"is_installable\":false},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":150,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\",\"is_installable\":true},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Shipment_Tracking_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.2,\"reviews_count\":38,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\",\"is_installable\":true},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":3.7,\"reviews_count\":9,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/Min-Max_Quantities_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":3,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\",\"is_installable\":false},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\",\"is_installable\":false},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\",\"is_installable\":false},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate tax compliance for your WooCommerce store. From sales tax calculation and tax returns to exempt sales and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.1,\"reviews_count\":31,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\",\"is_installable\":false},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":3.4,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\",\"is_installable\":false},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":131,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Product_Bundles_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\",\"is_installable\":true},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":3,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/WooCommerce_Brands_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;279.00\",\"raw_price\":279,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":80,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\",\"is_installable\":true},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/03\\/Gift_Cards_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":5,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/EU_VAT_Number_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/07\\/Product_Recommendations_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/11\\/Back_in_Stock_Notifications_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\",\"is_installable\":true},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":4.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\",\"is_installable\":true},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\",\"is_installable\":false},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":2.9,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Checkout_Field_Editor_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":3,\"reviews_count\":38,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/05\\/Bookings_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":3.8,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Table_Rate_Shipping_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":3.6,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\",\"is_installable\":true},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":114,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\",\"is_installable\":false},{\"title\":\"TikTok\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":2.5,\"reviews_count\":58,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\",\"is_installable\":false},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":3.3,\"reviews_count\":8,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Product_CSV_Import_Suite_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":109,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\",\"is_installable\":true},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\",\"is_installable\":false},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3.1,\"reviews_count\":20,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/Product_Vendors_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Points_and_Rewards_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Advanced_Notifications_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.4,\"reviews_count\":75,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":2.2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Pre_Order_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Additional_Variation_Images_icon-marketplace-160x160-2.png\",\"is_installable\":false},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Deposits_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"PayPal Braintree\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\",\"is_installable\":true},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Woo_Subscriptions_Downloads_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Amazon S3 Storage for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":13,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\",\"is_installable\":false},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":1.8,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/Shipping_Multiple_Addresses_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Bulk_Stock_Management_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Automated marketing & order fulfillment for Woo stores. Zapier integration with thousands of popular apps, no code.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.2,\"reviews_count\":61,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\",\"is_installable\":false},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/WooCommerce_Purchase_Order_Gateway_icon-markertplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/04\\/WooCommerce_Box_Office_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":2.3,\"reviews_count\":4,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/07\\/Returns_and_Warranty_Woo.png\",\"is_installable\":false},{\"title\":\"Quick View for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\",\"is_installable\":false},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/WooCommerce_Order_Barcodes_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":1.5,\"reviews_count\":6,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce_Bookings_Availability_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":3.3,\"reviews_count\":4,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\",\"is_installable\":true},{\"title\":\"360\\u00ba Image for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\",\"is_installable\":false},{\"title\":\"Photography for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;89.00\",\"raw_price\":89,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":2.6,\"reviews_count\":5,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\",\"is_installable\":false},{\"title\":\"Products Compare for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\",\"is_installable\":false},{\"title\":\"Software Add-on for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":3.3,\"reviews_count\":3,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\",\"is_installable\":false},{\"title\":\"Store Catalog PDF Download for WooCommerce\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Kestrel\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kestrel\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\",\"is_installable\":false},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.4,\"reviews_count\":184,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\",\"is_installable\":false},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":61,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\",\"is_installable\":false},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\",\"is_installable\":false},{\"title\":\"Mercado Pago\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and Mercado Pago account money. Offer secure and protected payments with the leading processor in Latin America.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\",\"is_installable\":true},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Storefront Extensions Bundle\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"All the tools you\'ll need to define your style and customize your Storefront.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-extensions-bundle\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;69.00\",\"raw_price\":69,\"currency_symbol\":\"&#36;\",\"hash\":null,\"slug\":\"storefront-extensions-bundle\",\"id\":2213791,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/04\\/Storefront_icon-marketplace-160x160-1.png\",\"is_installable\":false},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kco-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":2,\"reviews_count\":3,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\",\"is_installable\":true},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"raw_price\":149,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":103,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/Composite_Products_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/klarna-kp-demo.krokedil.site\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.9,\"reviews_count\":15,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\",\"is_installable\":true},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.5,\"reviews_count\":19,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":46,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/Conditional_Shipping_Payments_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.6,\"reviews_count\":32,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/recaptcha.jpg\",\"is_installable\":false},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":3.8,\"reviews_count\":8,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\",\"is_installable\":true},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":2.3,\"reviews_count\":3,\"vendor_name\":\"Eway\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/eway\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":18,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":4.2,\"reviews_count\":9,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\",\"is_installable\":false},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":3.2,\"reviews_count\":5,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\",\"is_installable\":false},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":2,\"reviews_count\":5,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\",\"is_installable\":false},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"The perfect Search Engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":172,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\",\"is_installable\":false},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":3.7,\"reviews_count\":3,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/One_Page_Checkout_icon-marketplace-80x80-1.png\",\"is_installable\":false},{\"title\":\"Viva.com Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Integrate the Viva.com payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":4.9,\"reviews_count\":11,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\",\"is_installable\":false},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.3,\"reviews_count\":15,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":4.6,\"reviews_count\":8,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null,\"is_installable\":false},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":4.6,\"reviews_count\":12,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Mollie Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Mollie-logo-dark__2x.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Offer global and local payment methods, get onboarded in minutes, and supported in your language.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mollie-payments-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a632d45f-8ff2-4c8f-b0b4-b46395b21bfc\",\"slug\":\"mollie-payments-for-woocommerce\",\"id\":7304393,\"rating\":3.5,\"reviews_count\":8,\"vendor_name\":\"Mollie\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mollie\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/01\\/Woo-Mollie-x6tgu8.png\",\"is_installable\":true},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":2.9,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\",\"is_installable\":false},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-icon-160x160-1.png\",\"is_installable\":false},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK.png?fit=764,573\",\"type\":\"extension\",\"freemium_type\":\"unset\",\"excerpt\":\"Take payments on your WooCommerce store with the UK\\u2019s most trusted payment solution.\\u00a0A selection of 3 gateway integrations to suit your business needs including Direct, Form and\\u00a0Pi.\\u00a0Always in front, with your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":3.1,\"reviews_count\":13,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_ByE_CMYK_160x160.png\",\"is_installable\":false}]}\";s:7:\"headers\";O:31:\"WpOrg\\Requests\\Response\\Headers\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 10 Apr 2024 15:52:52 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"14645\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:4:\"x-rq\";a:1:{i:0;s:15:\"bur5 85 188 443\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:1:\"9\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:25:\"WpOrg\\Requests\\Cookie\\Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;}}', 'no');
INSERT INTO `qs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(166821, '_transient_doing_cron', '1712877841.1385691165924072265625', 'yes');

-- --------------------------------------------------------

--
-- Table structure for table `qs_postmeta`
--

CREATE TABLE `qs_postmeta` (
  `meta_id` bigint UNSIGNED NOT NULL,
  `post_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_postmeta`
--

INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 6, '_form', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(6, 6, '_mail', 'a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@qualstream.net>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(7, 6, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@qualstream.net>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(8, 6, '_messages', 'a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
(10, 6, '_locale', 'en_US'),
(11, 7, '_wp_attached_file', 'woocommerce-placeholder.png'),
(12, 7, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1110x550.png\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x640.png\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(13, 12, '_wp_attached_file', '2020/06/woocommerce-placeholder.png'),
(14, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/06/woocommerce-placeholder.png\";s:5:\"sizes\";a:20:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1110x550.png\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x640.png\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(15, 12, '_wp_attached_file', 'woocommerce-placeholder.png'),
(16, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/06/woocommerce-placeholder.png\";s:5:\"sizes\";a:20:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1110x550.png\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-320x320.png\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x640.png\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17, 1632, 'name', 'Rushi Patel'),
(18, 1632, 'email', 'rushi1943@gmail.com'),
(19, 1632, 'phone', '9998711169'),
(20, 1632, 'company', 'Tirth Creation'),
(21, 1632, 'memberId', '1517'),
(22, 1632, 'event_member_eventID', '1517'),
(23, 1668, 'name', 'Robert Khadambi'),
(24, 1668, 'email', 'rlkhad@gmail.com'),
(25, 1668, 'phone', '723278375'),
(26, 1668, 'company', 'Fix Kenya Limited'),
(27, 1668, 'memberId', '1102'),
(28, 1668, 'event_member_eventID', '1102'),
(29, 1670, 'name', 'njn'),
(30, 1670, 'email', 'adfa@ini.com'),
(31, 1670, 'phone', '25245'),
(32, 1670, 'company', 'dfadf'),
(33, 1670, 'memberId', '1103'),
(34, 1670, 'event_member_eventID', '1103'),
(35, 2155, 'stm-name', 'Hotel BOOKING'),
(36, 2155, 'stm-fields', 'a:4:{i:0;a:9:{s:5:\"label\";s:22:\"ROOM PRICING FOR NIGHT\";s:3:\"_id\";i:0;s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:9:\"Drop Down\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:14:\"cost-drop-down\";s:4:\"icon\";s:19:\"fas fa-chevron-down\";s:5:\"alias\";s:19:\"dropDown_field_id_0\";s:7:\"options\";a:3:{i:0;a:2:{s:10:\"optionText\";s:14:\"EXECUTIVE ROOM\";s:11:\"optionValue\";s:3:\"299\";}i:1;a:2:{s:11:\"optionValue\";s:3:\"399\";s:10:\"optionText\";s:25:\" PANORAMIC VIEW, KING BED\";}i:2;a:2:{s:11:\"optionValue\";s:3:\"699\";s:10:\"optionText\";s:15:\"EXECUTIVE SUITE\";}}}i:1;a:10:{s:3:\"_id\";i:1;s:5:\"label\";s:28:\"ARRIVAL DATE/ DEPARTURE DATE\";s:5:\"range\";s:1:\"1\";s:11:\"placeholder\";s:21:\"Select available date\";s:6:\"_event\";s:5:\"click\";s:4:\"type\";s:11:\"Date Picker\";s:4:\"_tag\";s:11:\"date-picker\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:16:\"fa-calendar-week\";s:5:\"alias\";s:21:\"datePicker_field_id_1\";}i:2;a:9:{s:3:\"_id\";i:2;s:5:\"label\";s:10:\"ADD EXTRAS\";s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:8:\"Checkbox\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-checkbox\";s:4:\"icon\";s:19:\"fas fa-check-circle\";s:5:\"alias\";s:19:\"checkbox_field_id_2\";s:7:\"options\";a:5:{i:0;a:2:{s:10:\"optionText\";s:14:\"FULL BREAKFAST\";s:11:\"optionValue\";s:5:\"24.99\";}i:1;a:2:{s:10:\"optionText\";s:15:\"30 MINS MASSAGE\";s:11:\"optionValue\";s:5:\"49.99\";}i:2;a:2:{s:10:\"optionText\";s:20:\" Bottle of Champagne\";s:11:\"optionValue\";s:6:\"199.99\";}i:3;a:2:{s:10:\"optionText\";s:25:\"Small fruit plate (400 g)\";s:11:\"optionValue\";s:4:\"9.99\";}i:4;a:2:{s:10:\"optionText\";s:25:\"Large fruit plate (700 g)\";s:11:\"optionValue\";s:5:\"19.99\";}}}i:3;a:8:{s:3:\"_id\";i:3;s:6:\"symbol\";s:1:\"$\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:135:\"if(  dropDown_field_id_0   *  datePicker_field_id_1  ) {\n    dropDown_field_id_0  *  datePicker_field_id_1  +  checkbox_field_id_2 \n}  \";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:17:\"Total description\";}}'),
(37, 2155, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:17:\"Total description\";s:7:\"formula\";s:135:\"if(  dropDown_field_id_0   *  datePicker_field_id_1  ) {\n    dropDown_field_id_0  *  datePicker_field_id_1  +  checkbox_field_id_2 \n}  \";s:6:\"symbol\";s:1:\"$\";}}'),
(38, 2158, 'stm-name', 'Loan Form'),
(39, 2158, 'stm-fields', 'a:4:{i:0;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:11:\"Loan Amount\";s:3:\"_id\";i:0;s:11:\"placeholder\";s:12:\"Enter amount\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_0\";}i:1;a:12:{s:4:\"step\";i:1;s:4:\"unit\";i:1;s:5:\"label\";s:20:\"Annual Interest Rate\";s:3:\"_id\";i:1;s:8:\"minValue\";i:0;s:8:\"maxValue\";s:2:\"15\";s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_1\";}i:2;a:12:{s:4:\"step\";i:1;s:4:\"unit\";i:1;s:5:\"label\";s:6:\"Months\";s:3:\"_id\";i:2;s:8:\"minValue\";s:1:\"4\";s:8:\"maxValue\";s:3:\"160\";s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_2\";}i:3;a:8:{s:3:\"_id\";i:3;s:6:\"symbol\";s:1:\"$\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:151:\"( range_field_id_1  / 1200  +  (  range_field_id_1 /1200 ) / ( Math.pow(  1 +  range_field_id_1 /1200,  range_field_id_2 ) - 1)) *  quantity_field_id_0\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:5:\"Total\";}}'),
(40, 2158, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:5:\"Total\";s:7:\"formula\";s:151:\"( range_field_id_1  / 1200  +  (  range_field_id_1 /1200 ) / ( Math.pow(  1 +  range_field_id_1 /1200,  range_field_id_2 ) - 1)) *  quantity_field_id_0\";s:6:\"symbol\";s:1:\"$\";}}'),
(41, 2161, 'stm-name', 'Body Mass Index (BMI)'),
(42, 2161, 'stm-fields', 'a:3:{i:0;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:11:\"Your Height\";s:3:\"_id\";i:0;s:11:\"placeholder\";s:13:\"(centimeters)\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_0\";}i:1;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:11:\"Your Weight\";s:3:\"_id\";i:1;s:11:\"placeholder\";s:11:\"(kilograms)\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_1\";}i:2;a:8:{s:3:\"_id\";i:2;s:6:\"symbol\";s:0:\"\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:86:\"quantity_field_id_1  / ( quantity_field_id_0 * 0.01)  /  ( quantity_field_id_0 * 0.01)\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:9:\"Your BMI:\";}}'),
(43, 2161, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:9:\"Your BMI:\";s:7:\"formula\";s:86:\"quantity_field_id_1  / ( quantity_field_id_0 * 0.01)  /  ( quantity_field_id_0 * 0.01)\";s:6:\"symbol\";s:0:\"\";}}'),
(44, 2162, 'stm-name', 'Delivery Service'),
(45, 2162, 'stm-fields', 'a:6:{i:0;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:6:\"Height\";s:3:\"_id\";i:0;s:11:\"placeholder\";s:13:\"(centimeters)\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_0\";}i:1;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:5:\"Width\";s:3:\"_id\";i:1;s:11:\"placeholder\";s:13:\"(centimeters)\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_1\";}i:2;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:5:\"Depth\";s:3:\"_id\";i:2;s:11:\"placeholder\";s:13:\"(centimeters)\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_2\";}i:3;a:12:{s:4:\"step\";i:1;s:4:\"unit\";i:1;s:5:\"label\";s:8:\"Distance\";s:3:\"_id\";i:3;s:8:\"minValue\";i:0;s:8:\"maxValue\";s:2:\"50\";s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_3\";}i:4;a:9:{s:5:\"label\";s:15:\"Type of Service\";s:3:\"_id\";i:4;s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:9:\"Drop Down\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:14:\"cost-drop-down\";s:4:\"icon\";s:19:\"fas fa-chevron-down\";s:5:\"alias\";s:19:\"dropDown_field_id_4\";s:7:\"options\";a:3:{i:0;a:2:{s:10:\"optionText\";s:21:\"Within 2 working days\";s:11:\"optionValue\";s:2:\"30\";}i:1;a:2:{s:11:\"optionValue\";s:2:\"50\";s:10:\"optionText\";s:12:\"Door to door\";}i:2;a:2:{s:11:\"optionValue\";s:3:\"100\";s:10:\"optionText\";s:8:\"Same day\";}}}i:5;a:8:{s:3:\"_id\";i:5;s:6:\"symbol\";s:1:\"$\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:259:\"if(  (  quantity_field_id_0  * 0.5 +  quantity_field_id_1 * 0.5 +  quantity_field_id_2 * 0.5 )  *  range_field_id_3) {\n  (  quantity_field_id_0  * 0.5 +  quantity_field_id_1 * 0.5 +  quantity_field_id_2 * 0.5 )  *  range_field_id_3  +  dropDown_field_id_4  \n}\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:17:\"Total description\";}}'),
(46, 2162, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:17:\"Total description\";s:7:\"formula\";s:259:\"if(  (  quantity_field_id_0  * 0.5 +  quantity_field_id_1 * 0.5 +  quantity_field_id_2 * 0.5 )  *  range_field_id_3) {\n  (  quantity_field_id_0  * 0.5 +  quantity_field_id_1 * 0.5 +  quantity_field_id_2 * 0.5 )  *  range_field_id_3  +  dropDown_field_id_4  \n}\";s:6:\"symbol\";s:1:\"$\";}}'),
(47, 2163, 'stm-name', 'Renovation'),
(48, 2163, 'stm-fields', 'a:7:{i:0;a:12:{s:4:\"step\";s:2:\"20\";s:4:\"unit\";s:2:\"75\";s:5:\"label\";s:17:\"Square Feet ($75)\";s:3:\"_id\";i:0;s:8:\"minValue\";i:0;s:8:\"maxValue\";s:4:\"2000\";s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_0\";}i:1;a:12:{s:4:\"step\";i:1;s:4:\"unit\";s:2:\"25\";s:5:\"label\";s:26:\"Number of Rooms ($25/room)\";s:3:\"_id\";i:1;s:8:\"minValue\";s:1:\"1\";s:8:\"maxValue\";s:2:\"10\";s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_1\";}i:2;a:9:{s:5:\"label\";s:15:\"Bathroom Design\";s:3:\"_id\";i:5;s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:9:\"Drop Down\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:14:\"cost-drop-down\";s:4:\"icon\";s:19:\"fas fa-chevron-down\";s:5:\"alias\";s:19:\"dropDown_field_id_5\";s:7:\"options\";a:3:{i:0;a:2:{s:10:\"optionText\";s:10:\"Low ($250)\";s:11:\"optionValue\";s:3:\"250\";}i:1;a:2:{s:11:\"optionValue\";s:3:\"500\";s:10:\"optionText\";s:13:\"Middle ($500)\";}i:2;a:2:{s:11:\"optionValue\";s:3:\"750\";s:10:\"optionText\";s:11:\"High ($750)\";}}}i:3;a:12:{s:4:\"step\";s:2:\"10\";s:4:\"unit\";s:2:\"10\";s:5:\"label\";s:27:\"Pipes to Replace ($10/pipe)\";s:3:\"_id\";i:7;s:8:\"minValue\";i:0;s:8:\"maxValue\";i:100;s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-range\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Range Button\";s:4:\"icon\";s:15:\"far fa-exchange\";s:5:\"alias\";s:16:\"range_field_id_7\";}i:4;a:9:{s:3:\"_id\";i:10;s:5:\"label\";s:14:\"Choose options\";s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:8:\"Checkbox\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-checkbox\";s:4:\"icon\";s:19:\"fas fa-check-circle\";s:5:\"alias\";s:20:\"checkbox_field_id_10\";s:7:\"options\";a:2:{i:0;a:2:{s:10:\"optionText\";s:13:\"Swimming Pool\";s:11:\"optionValue\";s:3:\"250\";}i:1;a:2:{s:10:\"optionText\";s:8:\"Exterior\";s:11:\"optionValue\";s:3:\"200\";}}}i:5;a:11:{s:5:\"label\";s:6:\"Boiler\";s:3:\"_id\";i:2;s:7:\"default\";s:3:\"600\";s:7:\"onValue\";N;s:6:\"_event\";s:6:\"change\";s:4:\"_tag\";s:10:\"cost-radio\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"type\";s:12:\"Radio Button\";s:4:\"icon\";s:13:\"fa-dot-circle\";s:5:\"alias\";s:16:\"radio_field_id_2\";s:7:\"options\";a:2:{i:0;a:2:{s:10:\"optionText\";s:10:\"Gas boiler\";s:11:\"optionValue\";s:3:\"600\";}i:1;a:2:{s:10:\"optionText\";s:15:\"Electric boiler\";s:11:\"optionValue\";s:3:\"750\";}}}i:6;a:8:{s:3:\"_id\";i:11;s:6:\"symbol\";s:1:\"$\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:184:\" (  range_field_id_0  +  range_field_id_1  +  range_field_id_2  )  +  (  dropDown_field_id_5  +  range_field_id_6  +  range_field_id_7  )  +  checkbox_field_id_10  +  radio_field_id_2 \";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:5:\"Total\";}}'),
(49, 2163, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:5:\"Total\";s:7:\"formula\";s:184:\" (  range_field_id_0  +  range_field_id_1  +  range_field_id_2  )  +  (  dropDown_field_id_5  +  range_field_id_6  +  range_field_id_7  )  +  checkbox_field_id_10  +  radio_field_id_2 \";s:6:\"symbol\";s:1:\"$\";}}'),
(50, 4837, 'event_member_eventID', '1100'),
(51, 4837, 'memberId', '1100'),
(52, 4837, 'company', 'test'),
(53, 4837, 'phone', '+998977529752'),
(54, 4837, 'email', 'adham@stylemixthemes.com'),
(55, 4837, 'name', 'Hello'),
(56, 5588, '_wp_attached_file', '2016/06/placeholder.gif'),
(57, 5588, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2016/06/placeholder.gif\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"placeholder-600x400.gif\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(58, 5588, '_wp_attached_file', '2016/06/placeholder.gif'),
(59, 5588, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2016/06/placeholder.gif\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"placeholder-600x400.gif\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(60, 5588, '_wp_attachment_image_alt', 'placeholder'),
(61, 6337, 'stm-name', 'Photography'),
(62, 6337, 'stm-fields', 'a:3:{i:0;a:9:{s:5:\"label\";s:8:\"Services\";s:3:\"_id\";i:0;s:6:\"_event\";s:6:\"change\";s:4:\"type\";s:9:\"Drop Down\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:14:\"cost-drop-down\";s:4:\"icon\";s:19:\"fas fa-chevron-down\";s:5:\"alias\";s:19:\"dropDown_field_id_0\";s:7:\"options\";a:3:{i:0;a:2:{s:10:\"optionText\";s:18:\"Studio Photography\";s:11:\"optionValue\";s:2:\"25\";}i:1;a:2:{s:11:\"optionValue\";s:2:\"15\";s:10:\"optionText\";s:18:\"Nature Photography\";}i:2;a:2:{s:11:\"optionValue\";s:2:\"45\";s:10:\"optionText\";s:19:\"Wedding Photography\";}}}i:1;a:10:{s:4:\"unit\";i:1;s:5:\"label\";s:5:\"Hours\";s:3:\"_id\";i:1;s:11:\"placeholder\";s:11:\"Choose time\";s:6:\"_event\";s:5:\"keyup\";s:4:\"type\";s:8:\"Quantity\";s:16:\"additionalStyles\";s:0:\"\";s:4:\"_tag\";s:13:\"cost-quantity\";s:4:\"icon\";s:17:\"fas fa-calculator\";s:5:\"alias\";s:19:\"quantity_field_id_1\";}i:2;a:8:{s:3:\"_id\";i:2;s:6:\"symbol\";s:1:\"$\";s:4:\"type\";s:5:\"Total\";s:4:\"_tag\";s:10:\"cost-total\";s:15:\"costCalcFormula\";s:45:\" dropDown_field_id_0  *  quantity_field_id_1 \";s:16:\"additionalStyles\";s:0:\"\";s:4:\"icon\";s:17:\"fa-money-bill-alt\";s:5:\"label\";s:5:\"Total\";}}'),
(63, 6337, 'stm-formula', 'a:1:{i:0;a:3:{s:5:\"label\";s:5:\"Total\";s:7:\"formula\";s:45:\" dropDown_field_id_0  *  quantity_field_id_1 \";s:6:\"symbol\";s:1:\"$\";}}'),
(64, 6474, '_wp_attached_file', '2016/06/placeholder-1.gif'),
(65, 6474, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2016/06/placeholder-1.gif\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"placeholder-1-600x400.gif\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(66, 6474, '_wp_attached_file', '2016/06/placeholder.gif'),
(67, 6474, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2016/06/placeholder-1.gif\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"placeholder-1-600x400.gif\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(68, 6474, '_wp_attachment_image_alt', 'placeholder'),
(69, 6475, '_menu_item_type', 'custom'),
(70, 6475, '_menu_item_menu_item_parent', '0'),
(71, 6475, '_menu_item_object_id', '6475'),
(72, 6475, '_menu_item_object', 'custom'),
(73, 6475, '_menu_item_target', ''),
(74, 6475, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(75, 6475, '_menu_item_xfn', ''),
(76, 6475, '_menu_item_url', '#'),
(77, 6475, '_menu_item_stm_mega', 'boxed'),
(78, 6475, '_menu_item_stm_mega_cols', 'default'),
(79, 6475, '_menu_item_stm_mega_col_width', 'default'),
(80, 6475, '_menu_item_stm_mega_cols_inside', 'default'),
(81, 6475, '_menu_item_stm_mega_second_col_width', 'default'),
(82, 6476, '_menu_item_type', 'custom'),
(83, 6476, '_menu_item_menu_item_parent', '0'),
(84, 6476, '_menu_item_object_id', '6476'),
(85, 6476, '_menu_item_object', 'custom'),
(86, 6476, '_menu_item_target', ''),
(87, 6476, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(88, 6476, '_menu_item_xfn', ''),
(89, 6476, '_menu_item_url', '/blog/?layout=grid&sidebar_id=none'),
(90, 6476, '_menu_item_stm_mega', 'disabled'),
(91, 6476, '_menu_item_stm_mega_cols', 'default'),
(92, 6476, '_menu_item_stm_mega_col_width', 'default'),
(93, 6476, '_menu_item_stm_mega_cols_inside', 'default'),
(94, 6476, '_menu_item_stm_mega_second_col_width', 'default'),
(95, 6477, '_menu_item_type', 'custom'),
(96, 6477, '_menu_item_menu_item_parent', '6476'),
(97, 6477, '_menu_item_object_id', '6477'),
(98, 6477, '_menu_item_object', 'custom'),
(99, 6477, '_menu_item_target', ''),
(100, 6477, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(101, 6477, '_menu_item_xfn', ''),
(102, 6477, '_menu_item_url', '/blog/'),
(103, 6477, '_menu_item_stm_mega', 'disabled'),
(104, 6477, '_menu_item_stm_mega_cols', 'default'),
(105, 6477, '_menu_item_stm_mega_col_width', 'default'),
(106, 6477, '_menu_item_stm_mega_cols_inside', 'default'),
(107, 6477, '_menu_item_stm_mega_second_col_width', 'default'),
(108, 6478, '_menu_item_type', 'custom'),
(109, 6478, '_menu_item_menu_item_parent', '6476'),
(110, 6478, '_menu_item_object_id', '6478'),
(111, 6478, '_menu_item_object', 'custom'),
(112, 6478, '_menu_item_target', ''),
(113, 6478, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(114, 6478, '_menu_item_xfn', ''),
(115, 6478, '_menu_item_url', '/blog/?layout=grid&sidebar_id=none'),
(116, 6478, '_menu_item_stm_mega', 'disabled'),
(117, 6478, '_menu_item_stm_mega_cols', 'default'),
(118, 6478, '_menu_item_stm_mega_col_width', 'default'),
(119, 6478, '_menu_item_stm_mega_cols_inside', 'default'),
(120, 6478, '_menu_item_stm_mega_second_col_width', 'default'),
(121, 6479, '_menu_item_type', 'custom'),
(122, 6479, '_menu_item_menu_item_parent', '6475'),
(123, 6479, '_menu_item_object_id', '6479'),
(124, 6479, '_menu_item_object', 'custom'),
(125, 6479, '_menu_item_target', ''),
(126, 6479, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(127, 6479, '_menu_item_xfn', ''),
(128, 6479, '_menu_item_url', '/testimonials-page'),
(129, 6479, '_menu_item_stm_mega', 'disabled'),
(130, 6479, '_menu_item_stm_mega_cols', 'default'),
(131, 6479, '_menu_item_stm_mega_col_width', 'default'),
(132, 6479, '_menu_item_stm_mega_cols_inside', 'default'),
(133, 6479, '_menu_item_stm_mega_second_col_width', 'default'),
(134, 6480, '_menu_item_type', 'custom'),
(135, 6480, '_menu_item_menu_item_parent', '6475'),
(136, 6480, '_menu_item_object_id', '6480'),
(137, 6480, '_menu_item_object', 'custom'),
(138, 6480, '_menu_item_target', ''),
(139, 6480, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(140, 6480, '_menu_item_xfn', ''),
(141, 6480, '_menu_item_url', '/events-classic'),
(142, 6480, '_menu_item_stm_mega', 'disabled'),
(143, 6480, '_menu_item_stm_mega_cols', 'default'),
(144, 6480, '_menu_item_stm_mega_col_width', 'default'),
(145, 6480, '_menu_item_stm_mega_cols_inside', 'default'),
(146, 6480, '_menu_item_stm_mega_second_col_width', 'default'),
(147, 6481, '_menu_item_type', 'custom'),
(148, 6481, '_menu_item_menu_item_parent', '6479'),
(149, 6481, '_menu_item_object_id', '6481'),
(150, 6481, '_menu_item_object', 'custom'),
(151, 6481, '_menu_item_target', ''),
(152, 6481, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(153, 6481, '_menu_item_xfn', ''),
(154, 6481, '_menu_item_url', '/error'),
(155, 6481, '_menu_item_stm_mega', 'disabled'),
(156, 6481, '_menu_item_stm_mega_cols', 'default'),
(157, 6481, '_menu_item_stm_mega_col_width', 'default'),
(158, 6481, '_menu_item_stm_mega_cols_inside', 'default'),
(159, 6481, '_menu_item_stm_mega_second_col_width', 'default'),
(160, 6481, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(161, 6482, '_menu_item_type', 'custom'),
(162, 6482, '_menu_item_menu_item_parent', '6860'),
(163, 6482, '_menu_item_object_id', '6482'),
(164, 6482, '_menu_item_object', 'custom'),
(165, 6482, '_menu_item_target', ''),
(166, 6482, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(167, 6482, '_menu_item_xfn', ''),
(168, 6482, '_menu_item_url', '#'),
(169, 6482, '_menu_item_stm_mega', 'disabled'),
(170, 6482, '_menu_item_stm_mega_cols', 'default'),
(171, 6482, '_menu_item_stm_mega_col_width', 'default'),
(172, 6482, '_menu_item_stm_mega_cols_inside', 'default'),
(173, 6482, '_menu_item_stm_mega_second_col_width', 'default'),
(174, 6482, '_menu_item_stm_mega_textarea', '<table class=\"megamenu-contacts\">\n	<tr>\n		<td><i class=\"stm_megaicon fa fa-map-marker\"></i></td>\n		<td>1010 Avenue of the Moon New York, NY 10018 US.</td>\n	</tr>\n	<tr>\n		<td><i class=\"fa fa-phone\" aria-hidden=\"true\"></i></td>\n		<td>+1 628 123 4000</td>\n	</tr>\n	<tr>\n		<td><i class=\"fa fa-envelope\" aria-hidden=\"true\"></i></td>\n		<td><a href=\"mailto:berg@consulting.wp\">berg@consulting.wp</a></td>\n	</tr>\n	<tr>\n		<td><i class=\"fa fa-clock-o\" aria-hidden=\"true\"></i></td>\n		<td>Mon–Sat: 8:00AM–6:00PM Sunday: CLOSED</td>\n	</tr>\n</table>'),
(175, 6483, '_wpb_shortcodes_custom_css', '.vc_custom_1451991003825{margin-bottom: 100px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1482917865154{margin-top: 40px !important;}.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(176, 6483, '_wpb_shortcodes_custom_css', '.vc_custom_1451991003825{margin-bottom: 100px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1482917865154{margin-top: 40px !important;}.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(177, 6483, '_wpb_shortcodes_custom_css', '.vc_custom_1451991003825{margin-bottom: 100px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1482917865154{margin-top: 40px !important;}.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(178, 6483, '_wpb_shortcodes_custom_css', '.vc_custom_1451991003825{margin-bottom: 100px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1482917865154{margin-top: 40px !important;}.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(179, 6483, '_wpb_vc_js_status', 'true'),
(180, 6483, 'slide_template', 'default'),
(181, 6483, 'page_bg_repeat', 'no-repeat'),
(182, 6483, 'title', 'show'),
(183, 6483, 'title_box_bg_repeat', 'no-repeat'),
(184, 6483, 'breadcrumbs', 'hide'),
(185, 6483, 'title_box_button_border_color', '#ffffff'),
(186, 6483, 'title_box_button_font_color', '#333333'),
(187, 6483, 'title_box_button_font_color_hover', '#333333'),
(188, 6483, 'title_box_button_font_arrow_color', '#ffffff'),
(189, 6483, 'prev_next_buttons_border_color', '#ffffff'),
(190, 6483, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(191, 6483, 'title_box_style', 'style_2'),
(192, 6483, 'enable_transparent', 'on'),
(193, 6483, 'disable_title', 'on'),
(194, 6483, '_wpb_shortcodes_custom_css', '.vc_custom_1451991003825{margin-bottom: 100px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1482917865154{margin-top: 40px !important;}.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(195, 6483, '_oembed_c8ba90fe1701ed842094eb77169e1ff8', '{{unknown}}'),
(196, 6483, '_oembed_21ab778742454486ef2939b51c4cf596', '<iframe width=\"1120\" height=\"630\" src=\"https://www.youtube.com/embed/TJNuV4YfqLk?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),
(197, 6483, '_oembed_time_21ab778742454486ef2939b51c4cf596', '1454091798'),
(198, 6483, '_oembed_60bf8a0b4afe5750916f15871787dc7e', '{{unknown}}'),
(199, 6483, '_oembed_76a1e3134062c4ed932cdd8627fb8cad', '<iframe width=\"1120\" height=\"630\" src=\"https://www.youtube.com/embed/TJNuV4YfqLk?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),
(200, 6483, '_oembed_time_76a1e3134062c4ed932cdd8627fb8cad', '1454091986'),
(201, 6483, '_wp_page_template', 'default'),
(202, 6484, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(203, 6484, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(204, 6484, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(205, 6484, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(206, 6484, '_wpb_vc_js_status', 'true'),
(208, 6484, 'page_bg_repeat', 'no-repeat'),
(209, 6484, 'title', 'show'),
(210, 6484, 'title_box_bg_repeat', 'no-repeat'),
(211, 6484, 'breadcrumbs', 'hide'),
(212, 6484, 'title_box_button_border_color', '#ffffff'),
(213, 6484, 'title_box_button_font_color', '#333333'),
(214, 6484, 'title_box_button_font_color_hover', '#333333'),
(215, 6484, 'title_box_button_font_arrow_color', '#ffffff'),
(216, 6484, 'prev_next_buttons_border_color', '#ffffff'),
(217, 6484, 'prev_next_buttons_arrow_color_hover', '#dac725');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(218, 6484, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(219, 6484, 'disable_breadcrumbs', 'on'),
(220, 6484, 'enable_transparent', 'on'),
(221, 6484, 'disable_title', 'on'),
(222, 6484, '_wp_page_template', 'default'),
(223, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1459507825184{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393752493{margin-bottom: 0px !important;}'),
(224, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1459507825184{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393752493{margin-bottom: 0px !important;}'),
(225, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1459507825184{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393752493{margin-bottom: 0px !important;}'),
(226, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1459507825184{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393752493{margin-bottom: 0px !important;}'),
(227, 324, 'slide_template', 'default'),
(228, 324, 'title_box_bg_repeat', 'repeat'),
(229, 324, '_wpb_vc_js_status', 'true'),
(230, 324, 'enable_transparent', 'on'),
(231, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1459507825184{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393752493{margin-bottom: 0px !important;}'),
(232, 324, '_wp_page_template', 'default'),
(233, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(234, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(235, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(236, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(237, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(238, 344, '_wpb_vc_js_status', 'true'),
(239, 344, 'slide_template', 'default'),
(240, 344, 'page_bg_repeat', 'no-repeat'),
(241, 344, 'title', 'show'),
(242, 344, 'title_box_bg_repeat', 'no-repeat'),
(243, 344, 'breadcrumbs', 'hide'),
(244, 344, 'title_box_button_border_color', '#ffffff'),
(245, 344, 'title_box_button_font_color', '#333333'),
(246, 344, 'title_box_button_font_color_hover', '#333333'),
(247, 344, 'title_box_button_font_arrow_color', '#ffffff'),
(248, 344, 'prev_next_buttons_border_color', '#ffffff'),
(249, 344, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(250, 344, 'title_box_style', 'style_2'),
(251, 344, 'enable_transparent', 'on'),
(252, 344, 'disable_title', 'on'),
(253, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1459506276575{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462784180{margin-top: 45px !important;}.vc_custom_1455886051719{margin-bottom: 10px !important;}.vc_custom_1455886085190{margin-bottom: 10px !important;}.vc_custom_1545390404206{margin-bottom: 0px !important;}'),
(254, 344, '_dp_original', '9'),
(255, 344, '_wp_page_template', 'default'),
(256, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(257, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(258, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(259, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(260, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(261, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(262, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1540962018980{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452141433663{margin-bottom: 46px !important;}.vc_custom_1455883809051{margin-bottom: 50px !important;}.vc_custom_1545390392115{margin-bottom: 0px !important;}'),
(263, 377, '_wpb_vc_js_status', 'true'),
(264, 377, 'slide_template', 'default'),
(265, 377, 'page_bg_repeat', 'no-repeat'),
(266, 377, 'title', 'show'),
(267, 377, 'title_box_bg_repeat', 'no-repeat'),
(268, 377, 'breadcrumbs', 'hide'),
(269, 377, 'title_box_button_border_color', '#ffffff'),
(270, 377, 'title_box_button_font_color', '#333333'),
(271, 377, 'title_box_button_font_color_hover', '#333333'),
(272, 377, 'title_box_button_font_arrow_color', '#ffffff'),
(273, 377, 'prev_next_buttons_border_color', '#ffffff'),
(274, 377, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(275, 377, 'title_box_style', 'style_2'),
(276, 377, 'enable_transparent', 'on'),
(277, 377, 'disable_title', 'on'),
(278, 377, '_dp_original', '344'),
(279, 377, '_wp_page_template', 'default'),
(280, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(281, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(282, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(283, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(284, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(285, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(286, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1459506306543{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452152300724{margin-bottom: 46px !important;}.vc_custom_1456122558201{margin-bottom: 50px !important;}.vc_custom_1456122574722{margin-bottom: 50px !important;}.vc_custom_1456122588036{margin-bottom: 50px !important;}.vc_custom_1456122602434{margin-bottom: 50px !important;}.vc_custom_1545390415652{margin-bottom: 0px !important;}'),
(287, 390, '_wpb_vc_js_status', 'true'),
(288, 390, 'slide_template', 'default'),
(289, 390, 'page_bg_repeat', 'no-repeat'),
(290, 390, 'title', 'show'),
(291, 390, 'title_box_bg_repeat', 'no-repeat'),
(292, 390, 'breadcrumbs', 'hide'),
(293, 390, 'title_box_button_border_color', '#ffffff'),
(294, 390, 'title_box_button_font_color', '#333333'),
(295, 390, 'title_box_button_font_color_hover', '#333333'),
(296, 390, 'title_box_button_font_arrow_color', '#ffffff'),
(297, 390, 'prev_next_buttons_border_color', '#ffffff'),
(298, 390, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(299, 390, 'title_box_style', 'style_2'),
(300, 390, '_dp_original', '344'),
(301, 390, 'title_box_bg_image', '1027'),
(302, 390, '_wp_page_template', 'default'),
(303, 1071, '_wpb_shortcodes_custom_css', '.vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1618398293582{margin-bottom: 0px !important;}.vc_custom_1617704712082{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1617704978936{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1618549529357{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(304, 1071, '_wpb_shortcodes_custom_css', '.vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1618398293582{margin-bottom: 0px !important;}.vc_custom_1617704712082{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1617704978936{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1618549529357{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(305, 1071, '_wpb_shortcodes_custom_css', '.vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1618398293582{margin-bottom: 0px !important;}.vc_custom_1617704712082{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1617704978936{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1618549529357{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(306, 1071, '_wp_page_template', 'default'),
(307, 1071, '_wpb_vc_js_status', 'true'),
(308, 1071, 'slide_template', 'default'),
(309, 1071, 'page_bg_repeat', 'repeat'),
(310, 1071, 'title', 'hide'),
(311, 1071, 'title_box_bg_repeat', 'repeat'),
(312, 1071, 'breadcrumbs', 'show'),
(313, 1071, 'disable_title_box', 'on'),
(314, 1071, 'disable_title', 'on'),
(315, 1071, 'disable_breadcrumbs', 'on'),
(316, 1071, '_wp_page_template', 'default'),
(317, 1071, '_icl_lang_duplicate_of', '2'),
(318, 1071, '_wpb_vc_js_status', 'true'),
(319, 1071, 'slide_template', 'default'),
(320, 1071, 'page_bg_repeat', 'repeat'),
(321, 1071, 'title', 'hide'),
(322, 1071, 'title_box_bg_repeat', 'repeat'),
(323, 1071, 'breadcrumbs', 'show'),
(324, 1071, 'disable_title_box', 'on'),
(325, 1071, 'disable_title', 'on'),
(326, 1071, 'disable_breadcrumbs', 'on'),
(327, 1071, '_wp_page_template', 'default'),
(328, 1071, '_icl_lang_duplicate_of', '2'),
(329, 1071, '_wpb_vc_js_status', 'true'),
(330, 1071, 'slide_template', 'default'),
(331, 1071, 'page_bg_repeat', 'repeat'),
(332, 1071, 'title', 'hide'),
(333, 1071, 'title_box_bg_repeat', 'repeat'),
(334, 1071, 'breadcrumbs', 'show'),
(335, 1071, 'disable_title_box', 'on'),
(336, 1071, 'disable_title', 'on'),
(337, 1071, 'disable_breadcrumbs', 'on'),
(338, 1071, '_wpb_shortcodes_custom_css', '.vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1618398293582{margin-bottom: 0px !important;}.vc_custom_1617704712082{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1617704978936{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1618549529357{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(339, 1071, 'rs_page_bg_color', '#ffffff'),
(340, 5593, '_wpb_shortcodes_custom_css', '.vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}.vc_custom_1451475542681{margin-bottom: 22px !important;}.vc_custom_1451761604071{margin-bottom: 72px !important;}.vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}.vc_custom_1451888907770{margin-bottom: 24px !important;}.vc_custom_1451888913806{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1459507735619{margin-bottom: 108px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}.vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}.vc_custom_1451882578993{margin-bottom: 30px !important;}.vc_custom_1540892212116{margin-right: 26px !important;}.vc_custom_1451887219751{margin-right: 26px !important;}.vc_custom_1545636254835{margin-top: 0px !important;}.vc_custom_1451887944726{margin-bottom: 30px !important;}.vc_custom_1545393859382{margin-right: 26px !important;}.vc_custom_1545636128876{margin-top: -1px !important;}.vc_custom_1533641426048{margin-right: 26px !important;}.vc_custom_1545636155099{margin-top: -1px !important;}.vc_custom_1545393808190{margin-bottom: 0px !important;}'),
(341, 5593, '_wpb_shortcodes_custom_css', '.vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}.vc_custom_1451475542681{margin-bottom: 22px !important;}.vc_custom_1451761604071{margin-bottom: 72px !important;}.vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}.vc_custom_1451888907770{margin-bottom: 24px !important;}.vc_custom_1451888913806{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1459507735619{margin-bottom: 108px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}.vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}.vc_custom_1451882578993{margin-bottom: 30px !important;}.vc_custom_1540892212116{margin-right: 26px !important;}.vc_custom_1451887219751{margin-right: 26px !important;}.vc_custom_1545636254835{margin-top: 0px !important;}.vc_custom_1451887944726{margin-bottom: 30px !important;}.vc_custom_1545393859382{margin-right: 26px !important;}.vc_custom_1545636128876{margin-top: -1px !important;}.vc_custom_1533641426048{margin-right: 26px !important;}.vc_custom_1545636155099{margin-top: -1px !important;}.vc_custom_1545393808190{margin-bottom: 0px !important;}'),
(342, 5593, '_wpb_shortcodes_custom_css', '.vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}.vc_custom_1451475542681{margin-bottom: 22px !important;}.vc_custom_1451761604071{margin-bottom: 72px !important;}.vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}.vc_custom_1451888907770{margin-bottom: 24px !important;}.vc_custom_1451888913806{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1459507735619{margin-bottom: 108px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}.vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}.vc_custom_1451882578993{margin-bottom: 30px !important;}.vc_custom_1540892212116{margin-right: 26px !important;}.vc_custom_1451887219751{margin-right: 26px !important;}.vc_custom_1545636254835{margin-top: 0px !important;}.vc_custom_1451887944726{margin-bottom: 30px !important;}.vc_custom_1545393859382{margin-right: 26px !important;}.vc_custom_1545636128876{margin-top: -1px !important;}.vc_custom_1533641426048{margin-right: 26px !important;}.vc_custom_1545636155099{margin-top: -1px !important;}.vc_custom_1545393808190{margin-bottom: 0px !important;}'),
(343, 5593, '_wpb_shortcodes_custom_css', '.vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}.vc_custom_1451475542681{margin-bottom: 22px !important;}.vc_custom_1451761604071{margin-bottom: 72px !important;}.vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}.vc_custom_1451888907770{margin-bottom: 24px !important;}.vc_custom_1451888913806{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1459507735619{margin-bottom: 108px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}.vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}.vc_custom_1451882578993{margin-bottom: 30px !important;}.vc_custom_1540892212116{margin-right: 26px !important;}.vc_custom_1451887219751{margin-right: 26px !important;}.vc_custom_1545636254835{margin-top: 0px !important;}.vc_custom_1451887944726{margin-bottom: 30px !important;}.vc_custom_1545393859382{margin-right: 26px !important;}.vc_custom_1545636128876{margin-top: -1px !important;}.vc_custom_1533641426048{margin-right: 26px !important;}.vc_custom_1545636155099{margin-top: -1px !important;}.vc_custom_1545393808190{margin-bottom: 0px !important;}'),
(344, 5593, 'slide_template', 'default'),
(345, 5593, '_wpb_vc_js_status', 'true'),
(346, 5593, 'title_box_bg_repeat', 'repeat'),
(347, 5593, '_wpb_shortcodes_custom_css', '.vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}.vc_custom_1451475542681{margin-bottom: 22px !important;}.vc_custom_1451761604071{margin-bottom: 72px !important;}.vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}.vc_custom_1451888907770{margin-bottom: 24px !important;}.vc_custom_1451888913806{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1451888918278{margin-bottom: 24px !important;}.vc_custom_1459507735619{margin-bottom: 108px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}.vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}.vc_custom_1451882578993{margin-bottom: 30px !important;}.vc_custom_1540892212116{margin-right: 26px !important;}.vc_custom_1451887219751{margin-right: 26px !important;}.vc_custom_1545636254835{margin-top: 0px !important;}.vc_custom_1451887944726{margin-bottom: 30px !important;}.vc_custom_1545393859382{margin-right: 26px !important;}.vc_custom_1545636128876{margin-top: -1px !important;}.vc_custom_1533641426048{margin-right: 26px !important;}.vc_custom_1545636155099{margin-top: -1px !important;}.vc_custom_1545393808190{margin-bottom: 0px !important;}'),
(348, 5593, 'disable_title_box', 'on'),
(349, 5593, '_wp_page_template', 'default'),
(350, 6485, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(351, 6485, '_wpb_vc_js_status', 'false'),
(352, 6485, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(353, 6485, 'slide_template', 'default'),
(354, 6485, 'page_bg_repeat', 'no-repeat'),
(355, 6485, 'title', 'show'),
(356, 6485, 'title_box_bg_repeat', 'no-repeat'),
(357, 6485, 'breadcrumbs', 'hide'),
(358, 6485, 'title_box_button_border_color', '#ffffff'),
(359, 6485, 'title_box_button_font_color', '#333333'),
(360, 6485, 'title_box_button_font_color_hover', '#333333'),
(361, 6485, 'title_box_button_font_arrow_color', '#ffffff'),
(362, 6485, 'prev_next_buttons_border_color', '#ffffff'),
(363, 6485, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(364, 6485, 'enable_transparent', 'on'),
(365, 6485, 'disable_title', 'on'),
(366, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(367, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(368, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(369, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(370, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(371, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(372, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(373, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1459506339266{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1549462825715{margin-bottom: 52px !important;}.vc_custom_1453467174989{margin-bottom: 60px !important;}.vc_custom_1453463400247{margin-bottom: 30px !important;}.vc_custom_1549463987853{margin-bottom: 31px !important;}.vc_custom_1549463977651{margin-bottom: 15px !important;}.vc_custom_1545390382571{margin-bottom: 0px !important;}'),
(374, 408, '_wpb_vc_js_status', 'true'),
(375, 408, 'slide_template', 'default'),
(376, 408, 'page_bg_repeat', 'no-repeat'),
(377, 408, 'title', 'show'),
(378, 408, 'title_box_bg_repeat', 'no-repeat'),
(379, 408, 'breadcrumbs', 'hide'),
(380, 408, 'title_box_button_border_color', '#ffffff'),
(381, 408, 'title_box_button_font_color', '#333333'),
(382, 408, 'title_box_button_font_color_hover', '#333333'),
(383, 408, 'title_box_button_font_arrow_color', '#ffffff'),
(384, 408, 'prev_next_buttons_border_color', '#ffffff'),
(385, 408, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(386, 408, 'title_box_style', 'style_2'),
(387, 408, '_dp_original', '363'),
(388, 408, 'enable_transparent', 'on'),
(389, 408, 'disable_title', 'on'),
(390, 408, '_oembed_a755893a876c7cae6bbcaaacfc890e4c', '{{unknown}}'),
(391, 408, '_oembed_76a1e3134062c4ed932cdd8627fb8cad', '<iframe width=\"1120\" height=\"630\" src=\"https://www.youtube.com/embed/TJNuV4YfqLk?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),
(392, 408, '_oembed_time_76a1e3134062c4ed932cdd8627fb8cad', '1456221473'),
(393, 408, '_wp_page_template', 'default'),
(394, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(395, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(396, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(397, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(398, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(399, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(400, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(401, 440, '_wpb_shortcodes_custom_css', '.vc_custom_1459506521748{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390431613{margin-bottom: 0px !important;}'),
(402, 440, '_wpb_vc_js_status', 'true'),
(403, 440, 'slide_template', 'default'),
(404, 440, 'page_bg_repeat', 'no-repeat'),
(405, 440, 'title', 'show'),
(406, 440, 'title_box_bg_repeat', 'no-repeat'),
(407, 440, 'breadcrumbs', 'hide'),
(408, 440, 'title_box_button_border_color', '#ffffff'),
(409, 440, 'title_box_button_font_color', '#333333'),
(410, 440, 'title_box_button_font_color_hover', '#333333'),
(411, 440, 'title_box_button_font_arrow_color', '#ffffff'),
(412, 440, 'prev_next_buttons_border_color', '#ffffff'),
(413, 440, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(414, 440, 'title_box_style', 'style_2'),
(415, 440, 'enable_transparent', 'on'),
(416, 440, 'disable_title', 'on'),
(417, 440, '_dp_original', '377'),
(418, 440, '_wp_page_template', 'default'),
(419, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(420, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(421, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(422, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(423, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(424, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(425, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(426, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(427, 462, '_wpb_shortcodes_custom_css', '.vc_custom_1459506565899{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452247174165{margin-bottom: 30px !important;}.vc_custom_1545390449757{margin-bottom: 0px !important;}'),
(428, 462, '_wpb_vc_js_status', 'true'),
(429, 462, 'slide_template', 'default'),
(430, 462, 'page_bg_repeat', 'no-repeat'),
(431, 462, 'title', 'show'),
(432, 462, 'title_box_bg_repeat', 'no-repeat'),
(433, 462, 'breadcrumbs', 'hide'),
(434, 462, 'title_box_button_border_color', '#ffffff'),
(435, 462, 'title_box_button_font_color', '#333333'),
(436, 462, 'title_box_button_font_color_hover', '#333333'),
(437, 462, 'title_box_button_font_arrow_color', '#ffffff'),
(438, 462, 'prev_next_buttons_border_color', '#ffffff'),
(439, 462, 'prev_next_buttons_arrow_color_hover', '#dac725'),
(440, 462, 'title_box_style', 'style_2'),
(441, 462, 'enable_transparent', 'on'),
(442, 462, 'disable_title', 'on'),
(443, 462, '_dp_original', '440'),
(444, 462, '_wp_page_template', 'default'),
(445, 558, '_wpb_shortcodes_custom_css', '.vc_custom_1540962548235{margin-bottom: 30px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545390995735{margin-bottom: 0px !important;}'),
(446, 558, '_wpb_shortcodes_custom_css', '.vc_custom_1540962548235{margin-bottom: 30px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545390995735{margin-bottom: 0px !important;}'),
(447, 558, '_wpb_shortcodes_custom_css', '.vc_custom_1540962548235{margin-bottom: 30px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545390995735{margin-bottom: 0px !important;}'),
(448, 558, '_wpb_shortcodes_custom_css', '.vc_custom_1540962548235{margin-bottom: 30px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545390995735{margin-bottom: 0px !important;}'),
(449, 558, 'slide_template', 'default'),
(450, 558, 'title_box_bg_repeat', 'no-repeat'),
(451, 558, '_wpb_vc_js_status', 'true'),
(452, 558, '_wpb_shortcodes_custom_css', '.vc_custom_1540962548235{margin-bottom: 30px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545390995735{margin-bottom: 0px !important;}'),
(453, 558, 'title_box_bg_image', '782'),
(454, 558, 'title_box_title_color', '#ffffff'),
(455, 558, '_wp_page_template', 'default'),
(456, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391508197{margin-bottom: 0px !important;}'),
(457, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391508197{margin-bottom: 0px !important;}'),
(458, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391508197{margin-bottom: 0px !important;}'),
(459, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391508197{margin-bottom: 0px !important;}'),
(460, 601, 'slide_template', 'default'),
(461, 601, 'enable_transparent', 'on'),
(462, 601, 'title_box_bg_repeat', 'repeat'),
(463, 601, '_wpb_vc_js_status', 'true'),
(464, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391508197{margin-bottom: 0px !important;}'),
(465, 601, '_wp_page_template', 'default'),
(466, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(467, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}'),
(468, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}'),
(469, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}'),
(470, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}'),
(471, 614, 'slide_template', 'default'),
(472, 614, 'enable_transparent', 'on'),
(473, 614, 'title_box_bg_repeat', 'repeat'),
(474, 614, '_wpb_vc_js_status', 'true'),
(475, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1459507011960{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545391607711{margin-bottom: 0px !important;}'),
(476, 614, '_dp_original', '601'),
(477, 614, '_wp_page_template', 'default'),
(478, 834, 'disable_breadcrumbs', 'on'),
(479, 834, 'slide_template', 'default'),
(480, 834, 'title_box_bg_repeat', 'repeat'),
(481, 834, '_wpb_vc_js_status', 'false'),
(482, 834, 'enable_transparent', 'on'),
(483, 835, 'slide_template', 'default'),
(484, 835, 'enable_transparent', 'on'),
(485, 835, 'title_box_bg_repeat', 'repeat'),
(486, 835, '_wpb_vc_js_status', 'false'),
(487, 835, '_wp_page_template', 'default'),
(488, 836, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(489, 836, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(490, 836, 'slide_template', 'default'),
(491, 836, 'enable_transparent', 'on'),
(492, 836, 'title_box_bg_repeat', 'repeat'),
(493, 836, '_wpb_vc_js_status', 'false'),
(494, 836, '_wp_page_template', 'default'),
(495, 837, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(496, 837, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(497, 837, 'slide_template', 'default'),
(498, 837, 'enable_transparent', 'on'),
(499, 837, 'title_box_bg_repeat', 'repeat'),
(500, 837, '_wpb_vc_js_status', 'false'),
(501, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription-1.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/partners_bg-1.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(502, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription-1.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/partners_bg-1.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(503, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription-1.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/partners_bg-1.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(504, 979, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(505, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/partners_bg.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(506, 979, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(507, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/partners_bg.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(508, 979, '_wp_page_template', 'default'),
(509, 979, '_wpb_vc_js_status', 'true'),
(510, 979, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(511, 979, 'slide_template', 'default'),
(512, 979, 'page_bg_repeat', 'repeat'),
(513, 979, 'title', 'hide'),
(514, 979, 'title_box_bg_repeat', 'repeat'),
(515, 979, 'breadcrumbs', 'show'),
(516, 979, '_wpb_shortcodes_custom_css', '.vc_custom_1450677977665{margin-bottom: 0px !important;}.vc_custom_1450692516354{margin-bottom: 60px !important;}.vc_custom_1450856873482{margin-bottom: 37px !important;}.vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}.vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1450960276268{margin-bottom: 73px !important;}.vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}.vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2015/12/partners_bg.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1451479401686{margin-bottom: 31px !important;}.vc_custom_1451043728133{margin-bottom: 32px !important;}.vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}.vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1453273274030{margin-bottom: 0px !important;}.vc_custom_1451477220404{margin-bottom: 76px !important;}.vc_custom_1450870589488{margin-bottom: 48px !important;}.vc_custom_1453448521712{margin-bottom: 61px !important;}.vc_custom_1453275785238{margin-bottom: 76px !important;}.vc_custom_1451044003374{margin-bottom: 19px !important;}'),
(517, 979, 'disable_title_box', 'on'),
(518, 979, 'disable_title', 'on'),
(519, 979, 'disable_breadcrumbs', 'on'),
(520, 979, '_dp_original', '2'),
(521, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(522, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(523, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(524, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(525, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(526, 1077, 'slide_template', 'default'),
(527, 1077, 'title_box_bg_repeat', 'repeat'),
(528, 1077, '_wpb_vc_js_status', 'true'),
(529, 1077, 'enable_transparent', 'on'),
(530, 1077, '_wpb_shortcodes_custom_css', '.vc_custom_1459404415716{margin-bottom: 40px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1545393763628{margin-bottom: 0px !important;}'),
(531, 1077, '_dp_original', '324'),
(532, 1077, '_wp_page_template', 'default'),
(533, 1478, '_wpb_shortcodes_custom_css', '.vc_custom_1485429758182{margin-bottom: 23px !important;}.vc_custom_1485430310469{margin-bottom: 63px !important;}.vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1544778890396{margin-bottom: 30px !important;}'),
(534, 1478, '_wpb_shortcodes_custom_css', '.vc_custom_1485429758182{margin-bottom: 23px !important;}.vc_custom_1485430310469{margin-bottom: 63px !important;}.vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1544778890396{margin-bottom: 30px !important;}'),
(535, 1478, '_wpb_shortcodes_custom_css', '.vc_custom_1485429758182{margin-bottom: 23px !important;}.vc_custom_1485430310469{margin-bottom: 63px !important;}.vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1544778890396{margin-bottom: 30px !important;}'),
(536, 1478, '_wpb_shortcodes_custom_css', '.vc_custom_1485429758182{margin-bottom: 23px !important;}.vc_custom_1485430310469{margin-bottom: 63px !important;}.vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1544778890396{margin-bottom: 30px !important;}'),
(537, 1478, '_wp_page_template', 'default'),
(538, 1478, 'slide_template', 'default'),
(539, 1478, 'title_box_title_color', '#ffffff'),
(540, 1478, 'title_box_title_line_color', '#ffffff'),
(541, 1478, 'title_box_bg_image', '703'),
(542, 1478, 'title_box_bg_repeat', 'no-repeat'),
(543, 1478, '_wpb_vc_js_status', 'true'),
(544, 1478, '_wpb_shortcodes_custom_css', '.vc_custom_1485429758182{margin-bottom: 23px !important;}.vc_custom_1485430310469{margin-bottom: 63px !important;}.vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1544778890396{margin-bottom: 30px !important;}'),
(545, 1478, 'title_box_bg_position', '50% 50%'),
(546, 1480, '_wpb_shortcodes_custom_css', '.vc_custom_1485495419934{margin-bottom: 0px !important;}.vc_custom_1485495492516{margin-bottom: 27px !important;}.vc_custom_1485495581044{margin-bottom: 0px !important;}.vc_custom_1521796998612{margin-bottom: 40px !important;}.vc_custom_1485435561407{margin-bottom: 30px !important;}.vc_custom_1485435566908{margin-bottom: 30px !important;}.vc_custom_1485435572601{margin-bottom: 30px !important;}.vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495377819{margin-bottom: 20px !important;}.vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495382603{margin-bottom: 20px !important;}.vc_custom_1549472970603{margin-bottom: 28px !important;}'),
(547, 1480, '_wpb_shortcodes_custom_css', '.vc_custom_1485495419934{margin-bottom: 0px !important;}.vc_custom_1485495492516{margin-bottom: 27px !important;}.vc_custom_1485495581044{margin-bottom: 0px !important;}.vc_custom_1521796998612{margin-bottom: 40px !important;}.vc_custom_1485435561407{margin-bottom: 30px !important;}.vc_custom_1485435566908{margin-bottom: 30px !important;}.vc_custom_1485435572601{margin-bottom: 30px !important;}.vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495377819{margin-bottom: 20px !important;}.vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495382603{margin-bottom: 20px !important;}.vc_custom_1549472970603{margin-bottom: 28px !important;}'),
(548, 1480, '_wpb_shortcodes_custom_css', '.vc_custom_1485495419934{margin-bottom: 0px !important;}.vc_custom_1485495492516{margin-bottom: 27px !important;}.vc_custom_1485495581044{margin-bottom: 0px !important;}.vc_custom_1521796998612{margin-bottom: 40px !important;}.vc_custom_1485435561407{margin-bottom: 30px !important;}.vc_custom_1485435566908{margin-bottom: 30px !important;}.vc_custom_1485435572601{margin-bottom: 30px !important;}.vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495377819{margin-bottom: 20px !important;}.vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495382603{margin-bottom: 20px !important;}.vc_custom_1549472970603{margin-bottom: 28px !important;}'),
(549, 1480, '_wpb_shortcodes_custom_css', '.vc_custom_1485495419934{margin-bottom: 0px !important;}.vc_custom_1485495492516{margin-bottom: 27px !important;}.vc_custom_1485495581044{margin-bottom: 0px !important;}.vc_custom_1521796998612{margin-bottom: 40px !important;}.vc_custom_1485435561407{margin-bottom: 30px !important;}.vc_custom_1485435566908{margin-bottom: 30px !important;}.vc_custom_1485435572601{margin-bottom: 30px !important;}.vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495377819{margin-bottom: 20px !important;}.vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495382603{margin-bottom: 20px !important;}.vc_custom_1549472970603{margin-bottom: 28px !important;}'),
(550, 1480, '_wp_page_template', 'default'),
(551, 1480, 'slide_template', 'default'),
(552, 1480, 'enable_transparent', 'on'),
(553, 1480, 'title_box_bg_repeat', 'no-repeat'),
(554, 1480, '_wpb_vc_js_status', 'true'),
(555, 1480, '_wpb_shortcodes_custom_css', '.vc_custom_1485495419934{margin-bottom: 0px !important;}.vc_custom_1485495492516{margin-bottom: 27px !important;}.vc_custom_1485495581044{margin-bottom: 0px !important;}.vc_custom_1521796998612{margin-bottom: 40px !important;}.vc_custom_1485435561407{margin-bottom: 30px !important;}.vc_custom_1485435566908{margin-bottom: 30px !important;}.vc_custom_1485435572601{margin-bottom: 30px !important;}.vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495377819{margin-bottom: 20px !important;}.vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1485495382603{margin-bottom: 20px !important;}.vc_custom_1549472970603{margin-bottom: 28px !important;}'),
(556, 1483, '_wpb_shortcodes_custom_css', '.vc_custom_1485437951034{margin-bottom: -60px !important;}.vc_custom_1485439524000{padding-top: 58px !important;}.vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1521797097910{margin-bottom: 51px !important;}.vc_custom_1521797106402{margin-bottom: 30px !important;}.vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}.vc_custom_1485437972924{margin-bottom: 30px !important;}.vc_custom_1485495966997{margin-bottom: 5px !important;}.vc_custom_1485495976629{margin-bottom: 5px !important;}.vc_custom_1485495781846{margin-bottom: 20px !important;}.vc_custom_1485495786512{margin-bottom: 20px !important;}.vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1521797144684{margin-bottom: 15px !important;}.vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1485437186454{margin-bottom: 15px !important;}'),
(557, 1483, '_wpb_shortcodes_custom_css', '.vc_custom_1485437951034{margin-bottom: -60px !important;}.vc_custom_1485439524000{padding-top: 58px !important;}.vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1521797097910{margin-bottom: 51px !important;}.vc_custom_1521797106402{margin-bottom: 30px !important;}.vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}.vc_custom_1485437972924{margin-bottom: 30px !important;}.vc_custom_1485495966997{margin-bottom: 5px !important;}.vc_custom_1485495976629{margin-bottom: 5px !important;}.vc_custom_1485495781846{margin-bottom: 20px !important;}.vc_custom_1485495786512{margin-bottom: 20px !important;}.vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1521797144684{margin-bottom: 15px !important;}.vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1485437186454{margin-bottom: 15px !important;}'),
(558, 1483, '_wpb_shortcodes_custom_css', '.vc_custom_1485437951034{margin-bottom: -60px !important;}.vc_custom_1485439524000{padding-top: 58px !important;}.vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1521797097910{margin-bottom: 51px !important;}.vc_custom_1521797106402{margin-bottom: 30px !important;}.vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}.vc_custom_1485437972924{margin-bottom: 30px !important;}.vc_custom_1485495966997{margin-bottom: 5px !important;}.vc_custom_1485495976629{margin-bottom: 5px !important;}.vc_custom_1485495781846{margin-bottom: 20px !important;}.vc_custom_1485495786512{margin-bottom: 20px !important;}.vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1521797144684{margin-bottom: 15px !important;}.vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1485437186454{margin-bottom: 15px !important;}'),
(559, 1483, '_wpb_shortcodes_custom_css', '.vc_custom_1485437951034{margin-bottom: -60px !important;}.vc_custom_1485439524000{padding-top: 58px !important;}.vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1521797097910{margin-bottom: 51px !important;}.vc_custom_1521797106402{margin-bottom: 30px !important;}.vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}.vc_custom_1485437972924{margin-bottom: 30px !important;}.vc_custom_1485495966997{margin-bottom: 5px !important;}.vc_custom_1485495976629{margin-bottom: 5px !important;}.vc_custom_1485495781846{margin-bottom: 20px !important;}.vc_custom_1485495786512{margin-bottom: 20px !important;}.vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1521797144684{margin-bottom: 15px !important;}.vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1485437186454{margin-bottom: 15px !important;}'),
(560, 1483, '_wp_page_template', 'default'),
(561, 1483, 'slide_template', 'default'),
(562, 1483, 'disable_title_box', 'on'),
(563, 1483, 'title_box_bg_repeat', 'no-repeat'),
(564, 1483, '_wpb_vc_js_status', 'true'),
(565, 1483, '_wpb_shortcodes_custom_css', '.vc_custom_1485437951034{margin-bottom: -60px !important;}.vc_custom_1485439524000{padding-top: 58px !important;}.vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1521797097910{margin-bottom: 51px !important;}.vc_custom_1521797106402{margin-bottom: 30px !important;}.vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}.vc_custom_1485437972924{margin-bottom: 30px !important;}.vc_custom_1485495966997{margin-bottom: 5px !important;}.vc_custom_1485495976629{margin-bottom: 5px !important;}.vc_custom_1485495781846{margin-bottom: 20px !important;}.vc_custom_1485495786512{margin-bottom: 20px !important;}.vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1521797144684{margin-bottom: 15px !important;}.vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}.vc_custom_1485437186454{margin-bottom: 15px !important;}'),
(566, 1501, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(567, 1501, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(568, 1501, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(569, 1501, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(570, 1501, '_wp_page_template', 'default'),
(571, 1501, 'slide_template', 'default'),
(572, 1501, 'title_box_bg_image', '5250'),
(573, 1501, 'title_box_bg_repeat', 'no-repeat'),
(574, 1501, '_wpb_vc_js_status', 'true'),
(575, 1501, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(576, 1501, 'title_box_title_color', '#ffffff'),
(577, 1501, 'title_box_title_line_color', '#ffffff'),
(578, 1503, '_wpb_shortcodes_custom_css', '.vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}.vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}.vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}.vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}.vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}.vc_custom_1485757244346{margin-bottom: 90px !important;}.vc_custom_1485757408683{margin-bottom: 77px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1559539497588{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}.vc_custom_1544770204739{margin-bottom: 39px !important;}.vc_custom_1533638631834{margin-bottom: 24px !important;}.vc_custom_1533638641514{margin-bottom: 24px !important;}.vc_custom_1533638655769{margin-bottom: 24px !important;}.vc_custom_1533638648915{margin-bottom: 24px !important;}.vc_custom_1533638664857{margin-bottom: 24px !important;}.vc_custom_1533638676483{margin-bottom: 24px !important;}.vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1544770213979{margin-bottom: 29px !important;}.vc_custom_1549457479529{margin-bottom: 25px !important;}.vc_custom_1559384100183{padding-top: 45px !important;}.vc_custom_1559384110831{padding-top: 45px !important;}.vc_custom_1559384126967{padding-top: 45px !important;}.vc_custom_1545390647978{margin-bottom: 0px !important;}'),
(579, 1503, '_wpb_shortcodes_custom_css', '.vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}.vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}.vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}.vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}.vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}.vc_custom_1485757244346{margin-bottom: 90px !important;}.vc_custom_1485757408683{margin-bottom: 77px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1559539497588{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}.vc_custom_1544770204739{margin-bottom: 39px !important;}.vc_custom_1533638631834{margin-bottom: 24px !important;}.vc_custom_1533638641514{margin-bottom: 24px !important;}.vc_custom_1533638655769{margin-bottom: 24px !important;}.vc_custom_1533638648915{margin-bottom: 24px !important;}.vc_custom_1533638664857{margin-bottom: 24px !important;}.vc_custom_1533638676483{margin-bottom: 24px !important;}.vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1544770213979{margin-bottom: 29px !important;}.vc_custom_1549457479529{margin-bottom: 25px !important;}.vc_custom_1559384100183{padding-top: 45px !important;}.vc_custom_1559384110831{padding-top: 45px !important;}.vc_custom_1559384126967{padding-top: 45px !important;}.vc_custom_1545390647978{margin-bottom: 0px !important;}'),
(580, 1503, '_wpb_shortcodes_custom_css', '.vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}.vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}.vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}.vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}.vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}.vc_custom_1485757244346{margin-bottom: 90px !important;}.vc_custom_1485757408683{margin-bottom: 77px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1559539497588{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}.vc_custom_1544770204739{margin-bottom: 39px !important;}.vc_custom_1533638631834{margin-bottom: 24px !important;}.vc_custom_1533638641514{margin-bottom: 24px !important;}.vc_custom_1533638655769{margin-bottom: 24px !important;}.vc_custom_1533638648915{margin-bottom: 24px !important;}.vc_custom_1533638664857{margin-bottom: 24px !important;}.vc_custom_1533638676483{margin-bottom: 24px !important;}.vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1544770213979{margin-bottom: 29px !important;}.vc_custom_1549457479529{margin-bottom: 25px !important;}.vc_custom_1559384100183{padding-top: 45px !important;}.vc_custom_1559384110831{padding-top: 45px !important;}.vc_custom_1559384126967{padding-top: 45px !important;}.vc_custom_1545390647978{margin-bottom: 0px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(581, 1503, '_wpb_shortcodes_custom_css', '.vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}.vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}.vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}.vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}.vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}.vc_custom_1485757244346{margin-bottom: 90px !important;}.vc_custom_1485757408683{margin-bottom: 77px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1559539497588{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}.vc_custom_1544770204739{margin-bottom: 39px !important;}.vc_custom_1533638631834{margin-bottom: 24px !important;}.vc_custom_1533638641514{margin-bottom: 24px !important;}.vc_custom_1533638655769{margin-bottom: 24px !important;}.vc_custom_1533638648915{margin-bottom: 24px !important;}.vc_custom_1533638664857{margin-bottom: 24px !important;}.vc_custom_1533638676483{margin-bottom: 24px !important;}.vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1544770213979{margin-bottom: 29px !important;}.vc_custom_1549457479529{margin-bottom: 25px !important;}.vc_custom_1559384100183{padding-top: 45px !important;}.vc_custom_1559384110831{padding-top: 45px !important;}.vc_custom_1559384126967{padding-top: 45px !important;}.vc_custom_1545390647978{margin-bottom: 0px !important;}'),
(582, 1503, '_wp_page_template', 'default'),
(583, 1503, 'slide_template', 'default'),
(584, 1503, 'enable_transparent', 'on'),
(585, 1503, 'title_box_bg_repeat', 'no-repeat'),
(586, 1503, '_wpb_vc_js_status', 'true'),
(587, 1503, '_wpb_shortcodes_custom_css', '.vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}.vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}.vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}.vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}.vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}.vc_custom_1485757244346{margin-bottom: 90px !important;}.vc_custom_1485757408683{margin-bottom: 77px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1559539497588{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}.vc_custom_1544770204739{margin-bottom: 39px !important;}.vc_custom_1533638631834{margin-bottom: 24px !important;}.vc_custom_1533638641514{margin-bottom: 24px !important;}.vc_custom_1533638655769{margin-bottom: 24px !important;}.vc_custom_1533638648915{margin-bottom: 24px !important;}.vc_custom_1533638664857{margin-bottom: 24px !important;}.vc_custom_1533638676483{margin-bottom: 24px !important;}.vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1544770213979{margin-bottom: 29px !important;}.vc_custom_1549457479529{margin-bottom: 25px !important;}.vc_custom_1559384100183{padding-top: 45px !important;}.vc_custom_1559384110831{padding-top: 45px !important;}.vc_custom_1559384126967{padding-top: 45px !important;}.vc_custom_1545390647978{margin-bottom: 0px !important;}'),
(588, 1508, '_wpb_shortcodes_custom_css', '.vc_custom_1484808671292{margin-bottom: 100px !important;}.vc_custom_1484890330045{margin-bottom: -60px !important;}.vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}.vc_custom_1544778616129{margin-bottom: 35px !important;}.vc_custom_1545394863537{margin-bottom: 0px !important;}'),
(589, 1508, '_wpb_shortcodes_custom_css', '.vc_custom_1484808671292{margin-bottom: 100px !important;}.vc_custom_1484890330045{margin-bottom: -60px !important;}.vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}.vc_custom_1544778616129{margin-bottom: 35px !important;}.vc_custom_1545394863537{margin-bottom: 0px !important;}'),
(590, 1508, '_wpb_shortcodes_custom_css', '.vc_custom_1484808671292{margin-bottom: 100px !important;}.vc_custom_1484890330045{margin-bottom: -60px !important;}.vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}.vc_custom_1544778616129{margin-bottom: 35px !important;}.vc_custom_1545394863537{margin-bottom: 0px !important;}'),
(591, 1508, '_wpb_shortcodes_custom_css', '.vc_custom_1484808671292{margin-bottom: 100px !important;}.vc_custom_1484890330045{margin-bottom: -60px !important;}.vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}.vc_custom_1544778616129{margin-bottom: 35px !important;}.vc_custom_1545394863537{margin-bottom: 0px !important;}'),
(592, 1508, '_wp_page_template', 'default'),
(593, 1508, 'slide_template', 'default'),
(594, 1508, 'enable_transparent', 'on'),
(595, 1508, 'title_box_bg_repeat', 'no-repeat'),
(596, 1508, 'disable_title', 'on'),
(597, 1508, '_wpb_vc_js_status', 'true'),
(598, 1508, '_wpb_shortcodes_custom_css', '.vc_custom_1484808671292{margin-bottom: 100px !important;}.vc_custom_1484890330045{margin-bottom: -60px !important;}.vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}.vc_custom_1544778616129{margin-bottom: 35px !important;}.vc_custom_1545394863537{margin-bottom: 0px !important;}'),
(599, 1529, '_wpb_shortcodes_custom_css', '.vc_custom_1485423383193{margin-bottom: 20px !important;}.vc_custom_1485423323752{margin-bottom: -60px !important;}.vc_custom_1485424286916{margin-bottom: 30px !important;}.vc_custom_1485424295749{margin-bottom: 30px !important;}.vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}'),
(600, 1529, '_wpb_shortcodes_custom_css', '.vc_custom_1485423383193{margin-bottom: 20px !important;}.vc_custom_1485423323752{margin-bottom: -60px !important;}.vc_custom_1485424286916{margin-bottom: 30px !important;}.vc_custom_1485424295749{margin-bottom: 30px !important;}.vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}'),
(601, 1529, '_wpb_shortcodes_custom_css', '.vc_custom_1485423383193{margin-bottom: 20px !important;}.vc_custom_1485423323752{margin-bottom: -60px !important;}.vc_custom_1485424286916{margin-bottom: 30px !important;}.vc_custom_1485424295749{margin-bottom: 30px !important;}.vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}'),
(602, 1529, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(603, 1529, '_wpb_shortcodes_custom_css', '.vc_custom_1485423383193{margin-bottom: 20px !important;}.vc_custom_1485423323752{margin-bottom: -60px !important;}.vc_custom_1485424286916{margin-bottom: 30px !important;}.vc_custom_1485424295749{margin-bottom: 30px !important;}.vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}'),
(604, 1529, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(605, 1529, '_wp_page_template', 'default'),
(606, 1529, 'slide_template', 'default'),
(607, 1529, 'enable_transparent', 'on'),
(608, 1529, 'title_box_bg_repeat', 'no-repeat'),
(609, 1529, '_wpb_vc_js_status', 'true'),
(610, 1529, '_wpb_shortcodes_custom_css', '.vc_custom_1485423383193{margin-bottom: 20px !important;}.vc_custom_1485423323752{margin-bottom: -60px !important;}.vc_custom_1485424286916{margin-bottom: 30px !important;}.vc_custom_1485424295749{margin-bottom: 30px !important;}.vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}'),
(611, 1530, '_wpb_shortcodes_custom_css', '.vc_custom_1483614678807{margin-bottom: 50px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545394831527{margin-bottom: 0px !important;}'),
(612, 1530, '_wpb_shortcodes_custom_css', '.vc_custom_1483614678807{margin-bottom: 50px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545394831527{margin-bottom: 0px !important;}'),
(613, 1530, '_wpb_shortcodes_custom_css', '.vc_custom_1483614678807{margin-bottom: 50px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545394831527{margin-bottom: 0px !important;}'),
(614, 1530, '_wpb_shortcodes_custom_css', '.vc_custom_1483614678807{margin-bottom: 50px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545394831527{margin-bottom: 0px !important;}'),
(615, 1530, '_wp_page_template', 'default'),
(616, 1530, 'slide_template', 'default'),
(617, 1530, 'enable_transparent', 'on'),
(618, 1530, 'title_box_bg_repeat', 'no-repeat'),
(619, 1530, '_wpb_vc_js_status', 'true'),
(620, 1530, '_wpb_shortcodes_custom_css', '.vc_custom_1483614678807{margin-bottom: 50px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545394831527{margin-bottom: 0px !important;}'),
(621, 1531, '_wpb_shortcodes_custom_css', '.vc_custom_1483689434468{margin-bottom: 50px !important;}.vc_custom_1484889414242{margin-bottom: -60px !important;}.vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}.vc_custom_1545394843949{margin-bottom: 0px !important;}'),
(622, 1531, '_wpb_shortcodes_custom_css', '.vc_custom_1483689434468{margin-bottom: 50px !important;}.vc_custom_1484889414242{margin-bottom: -60px !important;}.vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}.vc_custom_1545394843949{margin-bottom: 0px !important;}'),
(623, 1531, '_wpb_shortcodes_custom_css', '.vc_custom_1483689434468{margin-bottom: 50px !important;}.vc_custom_1484889414242{margin-bottom: -60px !important;}.vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}.vc_custom_1545394843949{margin-bottom: 0px !important;}'),
(624, 1531, '_wpb_shortcodes_custom_css', '.vc_custom_1483689434468{margin-bottom: 50px !important;}.vc_custom_1484889414242{margin-bottom: -60px !important;}.vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}.vc_custom_1545394843949{margin-bottom: 0px !important;}'),
(625, 1531, '_wp_page_template', 'default'),
(626, 1531, 'slide_template', 'default'),
(627, 1531, 'enable_transparent', 'on'),
(628, 1531, 'title_box_bg_repeat', 'no-repeat'),
(629, 1531, 'disable_title', 'on'),
(630, 1531, '_wpb_vc_js_status', 'true'),
(631, 1531, '_wpb_shortcodes_custom_css', '.vc_custom_1483689434468{margin-bottom: 50px !important;}.vc_custom_1484889414242{margin-bottom: -60px !important;}.vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}.vc_custom_1545394843949{margin-bottom: 0px !important;}'),
(632, 1532, '_wpb_shortcodes_custom_css', '.vc_custom_1485926573332{margin-bottom: 100px !important;}.vc_custom_1484890377722{margin-bottom: -60px !important;}.vc_custom_1484031782880{margin-top: -29px !important;}'),
(633, 1532, '_wpb_shortcodes_custom_css', '.vc_custom_1485926573332{margin-bottom: 100px !important;}.vc_custom_1484890377722{margin-bottom: -60px !important;}.vc_custom_1484031782880{margin-top: -29px !important;}'),
(634, 1532, '_wpb_shortcodes_custom_css', '.vc_custom_1485926573332{margin-bottom: 100px !important;}.vc_custom_1484890377722{margin-bottom: -60px !important;}.vc_custom_1484031782880{margin-top: -29px !important;}'),
(635, 1532, '_wpb_shortcodes_custom_css', '.vc_custom_1485926573332{margin-bottom: 100px !important;}.vc_custom_1484890377722{margin-bottom: -60px !important;}.vc_custom_1484031782880{margin-top: -29px !important;}'),
(636, 1532, '_wp_page_template', 'default'),
(637, 1532, 'slide_template', 'default'),
(638, 1532, 'enable_transparent', 'on'),
(639, 1532, 'title_box_bg_repeat', 'no-repeat'),
(640, 1532, 'disable_title', 'on'),
(641, 1532, '_wpb_vc_js_status', 'true'),
(642, 1532, '_wpb_shortcodes_custom_css', '.vc_custom_1485926573332{margin-bottom: 100px !important;}.vc_custom_1484890377722{margin-bottom: -60px !important;}.vc_custom_1484031782880{margin-top: -29px !important;}'),
(643, 1535, '_wpb_shortcodes_custom_css', '.vc_custom_1485854969371{margin-bottom: 110px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545392573012{margin-bottom: 0px !important;}'),
(644, 1535, '_wpb_shortcodes_custom_css', '.vc_custom_1485854969371{margin-bottom: 110px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545392573012{margin-bottom: 0px !important;}'),
(645, 1535, '_wpb_shortcodes_custom_css', '.vc_custom_1485854969371{margin-bottom: 110px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545392573012{margin-bottom: 0px !important;}'),
(646, 1535, '_wpb_shortcodes_custom_css', '.vc_custom_1485854969371{margin-bottom: 110px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545392573012{margin-bottom: 0px !important;}'),
(647, 1535, '_wp_page_template', 'default'),
(648, 1535, 'slide_template', 'default'),
(649, 1535, 'enable_transparent', 'on'),
(650, 1535, 'title_box_bg_repeat', 'no-repeat'),
(651, 1535, '_wpb_vc_js_status', 'true'),
(652, 1535, '_wpb_shortcodes_custom_css', '.vc_custom_1485854969371{margin-bottom: 110px !important;}.vc_custom_1484889309914{margin-bottom: -60px !important;}.vc_custom_1545392573012{margin-bottom: 0px !important;}'),
(653, 1647, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(654, 1647, '_wp_page_template', 'default'),
(655, 1647, 'slide_template', 'default'),
(656, 1647, 'title_box_title_color', '#ffffff'),
(657, 1647, 'title_box_bg_image', '782'),
(658, 1647, 'title_box_bg_repeat', 'no-repeat'),
(659, 1647, '_wpb_vc_js_status', 'true'),
(660, 5201, '_wpb_shortcodes_custom_css', '.vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}.vc_custom_1547623783077{background-color: #ffffff !important;}.vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1549356784354{margin-top: -5px !important;}.vc_custom_1553425532674{background-color: #f2f2f2 !important;}.vc_custom_1553425458588{background-color: #ffffff !important;}.vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}.vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}.vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}.vc_custom_1549378600459{margin-bottom: 35px !important;}.vc_custom_1461328617856{margin-bottom: 28px !important;}.vc_custom_1549378665115{margin-bottom: 35px !important;}.vc_custom_1553425365112{margin-bottom: 49px !important;}.vc_custom_1553422640194{padding-right: 15px !important;}.vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}.vc_custom_1461400368338{margin-bottom: -6px !important;}'),
(661, 5201, '_wpb_shortcodes_custom_css', '.vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}.vc_custom_1547623783077{background-color: #ffffff !important;}.vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1549356784354{margin-top: -5px !important;}.vc_custom_1553425532674{background-color: #f2f2f2 !important;}.vc_custom_1553425458588{background-color: #ffffff !important;}.vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}.vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}.vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}.vc_custom_1549378600459{margin-bottom: 35px !important;}.vc_custom_1461328617856{margin-bottom: 28px !important;}.vc_custom_1549378665115{margin-bottom: 35px !important;}.vc_custom_1553425365112{margin-bottom: 49px !important;}.vc_custom_1553422640194{padding-right: 15px !important;}.vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}.vc_custom_1461400368338{margin-bottom: -6px !important;}'),
(662, 5201, '_wpb_shortcodes_custom_css', '.vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}.vc_custom_1547623783077{background-color: #ffffff !important;}.vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1549356784354{margin-top: -5px !important;}.vc_custom_1553425532674{background-color: #f2f2f2 !important;}.vc_custom_1553425458588{background-color: #ffffff !important;}.vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}.vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}.vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}.vc_custom_1549378600459{margin-bottom: 35px !important;}.vc_custom_1461328617856{margin-bottom: 28px !important;}.vc_custom_1549378665115{margin-bottom: 35px !important;}.vc_custom_1553425365112{margin-bottom: 49px !important;}.vc_custom_1553422640194{padding-right: 15px !important;}.vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}.vc_custom_1461400368338{margin-bottom: -6px !important;}'),
(663, 5201, '_wpb_shortcodes_custom_css', '.vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}.vc_custom_1547623783077{background-color: #ffffff !important;}.vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1549356784354{margin-top: -5px !important;}.vc_custom_1553425532674{background-color: #f2f2f2 !important;}.vc_custom_1553425458588{background-color: #ffffff !important;}.vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}.vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}.vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}.vc_custom_1549378600459{margin-bottom: 35px !important;}.vc_custom_1461328617856{margin-bottom: 28px !important;}.vc_custom_1549378665115{margin-bottom: 35px !important;}.vc_custom_1553425365112{margin-bottom: 49px !important;}.vc_custom_1553422640194{padding-right: 15px !important;}.vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}.vc_custom_1461400368338{margin-bottom: -6px !important;}'),
(664, 5201, '_wp_page_template', 'default'),
(665, 5201, '_wp_page_template', 'default'),
(666, 5201, '_wp_page_template', 'default'),
(667, 5201, '_wpb_vc_js_status', 'true'),
(668, 5201, '_wpb_vc_js_status', 'true'),
(669, 5201, '_wpb_vc_js_status', 'true'),
(670, 5201, 'slide_template', 'default'),
(671, 5201, 'slide_template', 'default'),
(672, 5201, 'slide_template', 'default'),
(673, 5201, 'page_bg_repeat', 'repeat'),
(674, 5201, 'page_bg_repeat', 'repeat'),
(675, 5201, 'page_bg_repeat', 'repeat'),
(676, 5201, 'title', 'hide'),
(677, 5201, 'title', 'hide'),
(678, 5201, 'title', 'hide'),
(679, 5201, 'title_box_bg_repeat', 'repeat'),
(680, 5201, 'title_box_bg_repeat', 'repeat'),
(681, 5201, 'title_box_bg_repeat', 'repeat'),
(682, 5201, 'breadcrumbs', 'show'),
(683, 5201, 'breadcrumbs', 'show'),
(684, 5201, 'breadcrumbs', 'show'),
(685, 5201, 'disable_title_box', 'on'),
(686, 5201, 'disable_title_box', 'on'),
(687, 5201, 'disable_title_box', 'on'),
(688, 5201, 'disable_title', 'on'),
(689, 5201, 'disable_title', 'on'),
(690, 5201, 'disable_title', 'on'),
(691, 5201, 'disable_breadcrumbs', 'on'),
(692, 5201, 'disable_breadcrumbs', 'on'),
(693, 5201, 'disable_breadcrumbs', 'on'),
(694, 5201, '_icl_lang_duplicate_of', '2'),
(695, 5201, '_icl_lang_duplicate_of', '2'),
(696, 5201, '_wpb_shortcodes_custom_css', '.vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}.vc_custom_1547623783077{background-color: #ffffff !important;}.vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1549356784354{margin-top: -5px !important;}.vc_custom_1553425532674{background-color: #f2f2f2 !important;}.vc_custom_1553425458588{background-color: #ffffff !important;}.vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}.vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}.vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}.vc_custom_1549378600459{margin-bottom: 35px !important;}.vc_custom_1461328617856{margin-bottom: 28px !important;}.vc_custom_1549378665115{margin-bottom: 35px !important;}.vc_custom_1553425365112{margin-bottom: 49px !important;}.vc_custom_1553422640194{padding-right: 15px !important;}.vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}.vc_custom_1461400368338{margin-bottom: -6px !important;}'),
(697, 5201, '_dp_original', '1071'),
(698, 6122, '_wpb_shortcodes_custom_css', '.vc_custom_1573722038433{background-color: #f2f4fa !important;}.vc_custom_1573724454403{background-color: #f2f4fa !important;}.vc_custom_1574313475601{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6145) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(699, 6122, '_wpb_shortcodes_custom_css', '.vc_custom_1573722038433{background-color: #f2f4fa !important;}.vc_custom_1573724454403{background-color: #f2f4fa !important;}.vc_custom_1574313475601{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6145) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(700, 6122, '_wpb_shortcodes_custom_css', '.vc_custom_1573722038433{background-color: #f2f4fa !important;}.vc_custom_1573724454403{background-color: #f2f4fa !important;}.vc_custom_1574313475601{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6145) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(701, 6122, 'slide_template', 'default'),
(702, 6122, 'title_box_bg_repeat', 'no-repeat'),
(703, 6122, '_wp_page_template', 'default'),
(704, 6122, '_wpb_vc_js_status', 'true'),
(705, 6122, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1573722038433{background-color: #f2f4fa !important;}.vc_custom_1573724454403{background-color: #f2f4fa !important;}.vc_custom_1574313475601{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6145) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(706, 6137, '_wpb_shortcodes_custom_css', '.vc_custom_1573625850903{background-color: #f2f4fa !important;}.vc_custom_1573644004224{background-color: #304157 !important;}.vc_custom_1574312017431{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(707, 6137, '_wpb_shortcodes_custom_css', '.vc_custom_1573625850903{background-color: #f2f4fa !important;}.vc_custom_1573644004224{background-color: #304157 !important;}.vc_custom_1574312017431{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(708, 6137, '_wpb_shortcodes_custom_css', '.vc_custom_1573625850903{background-color: #f2f4fa !important;}.vc_custom_1573644004224{background-color: #304157 !important;}.vc_custom_1574312017431{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(709, 6137, 'slide_template', 'default'),
(710, 6137, 'title_box_bg_repeat', 'no-repeat'),
(711, 6137, '_wp_page_template', 'default'),
(712, 6137, '_wpb_vc_js_status', 'true'),
(713, 6137, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1573625850903{background-color: #f2f4fa !important;}.vc_custom_1573644004224{background-color: #304157 !important;}.vc_custom_1574312017431{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(714, 6168, '_wpb_shortcodes_custom_css', '.vc_custom_1576238094836{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1574398098802{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1574338643858{margin-bottom: 20px !important;}'),
(715, 6168, '_wpb_shortcodes_custom_css', '.vc_custom_1576238094836{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1574398098802{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1574338643858{margin-bottom: 20px !important;}'),
(716, 6168, '_wpb_shortcodes_custom_css', '.vc_custom_1576238094836{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1574398098802{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1574338643858{margin-bottom: 20px !important;}'),
(717, 6168, 'slide_template', 'default'),
(718, 6168, 'title_box_bg_repeat', 'no-repeat'),
(719, 6168, 'enable_transparent', 'on'),
(720, 6168, 'disable_title', 'on'),
(721, 6168, '_wp_page_template', 'default'),
(722, 6168, '_wpb_vc_js_status', 'true'),
(723, 6168, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1576238094836{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1574398098802{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1574338643858{margin-bottom: 20px !important;}'),
(724, 6180, 'slide_template', 'default'),
(725, 6180, 'title_box_bg_repeat', 'no-repeat'),
(726, 6180, '_wp_page_template', 'default'),
(727, 6180, '_wpb_vc_js_status', 'true'),
(728, 6180, 'enable_transparent', 'on'),
(729, 6180, 'disable_title', 'on'),
(730, 6195, '_wpb_shortcodes_custom_css', '.vc_custom_1574659099111{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6201) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(731, 6195, '_wpb_shortcodes_custom_css', '.vc_custom_1574659099111{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6201) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(732, 6195, '_wpb_shortcodes_custom_css', '.vc_custom_1574659099111{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6201) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(733, 6195, 'slide_template', 'default'),
(734, 6195, 'title_box_bg_repeat', 'no-repeat'),
(735, 6195, '_wp_page_template', 'default'),
(736, 6195, 'enable_transparent', 'on'),
(737, 6195, '_wpb_vc_js_status', 'true'),
(738, 6195, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1574659099111{margin-bottom: -60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6201) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(739, 6206, 'slide_template', 'default'),
(740, 6206, 'title_box_bg_repeat', 'no-repeat'),
(741, 6206, '_wp_page_template', 'default'),
(742, 6206, '_wpb_vc_js_status', 'true'),
(743, 6212, '_wpb_shortcodes_custom_css', '.vc_custom_1576565274506{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1574671813999{margin-bottom: 20px !important;}'),
(744, 6212, '_wpb_shortcodes_custom_css', '.vc_custom_1576565274506{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1574671813999{margin-bottom: 20px !important;}'),
(745, 6212, '_wpb_shortcodes_custom_css', '.vc_custom_1576565274506{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1574671813999{margin-bottom: 20px !important;}'),
(746, 6212, '_wp_page_template', 'coming_soon-page.php'),
(747, 6212, 'slide_template', 'default'),
(748, 6212, 'title_box_bg_repeat', 'no-repeat'),
(749, 6212, '_wpb_vc_js_status', 'true'),
(750, 6212, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1576565274506{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1574671813999{margin-bottom: 20px !important;}'),
(751, 6228, 'slide_template', 'default'),
(752, 6228, 'title_box_bg_repeat', 'no-repeat'),
(753, 6228, '_wp_page_template', 'default'),
(754, 6228, 'enable_transparent', 'on'),
(755, 6228, '_wpb_vc_js_status', 'true'),
(756, 6238, '_wpb_shortcodes_custom_css', '.vc_custom_1574751973770{background-color: #f2f4fa !important;}'),
(757, 6238, '_wpb_shortcodes_custom_css', '.vc_custom_1574751973770{background-color: #f2f4fa !important;}'),
(758, 6238, '_wpb_shortcodes_custom_css', '.vc_custom_1574751973770{background-color: #f2f4fa !important;}'),
(759, 6238, 'slide_template', 'default'),
(760, 6238, 'enable_transparent', 'on'),
(761, 6238, 'title_box_bg_repeat', 'no-repeat'),
(762, 6238, '_wp_page_template', 'default'),
(763, 6238, '_wpb_vc_js_status', 'true'),
(764, 6238, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1574751973770{background-color: #f2f4fa !important;}'),
(765, 6266, '_wp_page_template', 'default'),
(766, 6266, 'slide_template', 'default'),
(767, 6266, 'title_box_bg_repeat', 'no-repeat'),
(768, 6266, '_wpb_vc_js_status', 'true'),
(769, 6266, 'enable_transparent', 'on'),
(770, 6273, 'slide_template', 'default'),
(771, 6273, 'enable_transparent', 'on'),
(772, 6273, 'title_box_bg_repeat', 'no-repeat'),
(773, 6273, '_wp_page_template', 'default'),
(774, 6273, '_wpb_vc_js_status', 'true'),
(775, 6285, 'slide_template', 'default'),
(776, 6285, 'title_box_bg_repeat', 'no-repeat'),
(777, 6285, '_wp_page_template', 'default'),
(778, 6285, 'enable_transparent', 'on'),
(779, 6285, '_wpb_vc_js_status', 'true'),
(780, 6297, '_wp_page_template', 'default'),
(781, 6297, 'slide_template', 'default'),
(782, 6297, 'title_box_bg_repeat', 'no-repeat'),
(783, 6297, '_wpb_vc_js_status', 'true'),
(784, 6297, 'enable_transparent', 'on'),
(785, 6306, 'slide_template', 'default'),
(786, 6306, 'title_box_bg_repeat', 'no-repeat'),
(787, 6306, '_wp_page_template', 'default'),
(788, 6306, 'enable_transparent', 'on'),
(789, 6306, '_wpb_vc_js_status', 'true'),
(790, 6318, '_wp_page_template', 'default'),
(791, 6318, 'slide_template', 'default'),
(792, 6318, 'title_box_bg_repeat', 'no-repeat'),
(793, 6318, '_wpb_vc_js_status', 'true'),
(794, 6318, 'enable_transparent', 'on'),
(795, 56, '_download_expiry', '-1'),
(796, 56, '_download_limit', '-1'),
(797, 56, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(798, 56, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(799, 56, '_visibility', 'visible'),
(800, 56, '_stock_status', 'instock'),
(801, 56, 'total_sales', '0'),
(802, 56, '_downloadable', 'no'),
(803, 56, '_virtual', 'no'),
(804, 56, '_product_image_gallery', ''),
(805, 56, '_regular_price', '35'),
(806, 56, '_sale_price', ''),
(807, 56, '_tax_status', ''),
(808, 56, '_tax_class', ''),
(809, 56, '_purchase_note', ''),
(810, 56, '_featured', 'no'),
(811, 56, '_weight', ''),
(812, 56, '_length', ''),
(813, 56, '_width', ''),
(814, 56, '_height', ''),
(815, 56, '_sku', ''),
(816, 56, '_product_attributes', 'a:0:{}'),
(817, 56, '_sale_price_dates_from', ''),
(818, 56, '_sale_price_dates_to', ''),
(819, 56, '_price', '35'),
(820, 56, '_sold_individually', ''),
(821, 56, '_stock', ''),
(822, 56, '_backorders', 'no'),
(823, 56, '_manage_stock', 'no'),
(824, 56, '_crosssell_ids', 'a:1:{i:0;i:31;}'),
(825, 56, '_thumbnail_id', '5588'),
(826, 56, '_upsell_ids', 'a:0:{}'),
(827, 56, '_product_version', '3.6.4'),
(828, 56, 'slide_template', 'default'),
(829, 56, 'title_box_bg_repeat', 'repeat'),
(830, 56, '_wc_average_rating', '0'),
(831, 56, '_wc_review_count', '0'),
(834, 131, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392497214{margin-bottom: 0px !important;}'),
(835, 131, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392497214{margin-bottom: 0px !important;}'),
(836, 131, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392497214{margin-bottom: 0px !important;}'),
(837, 131, 'enable_transparent', 'on'),
(838, 131, 'disable_title', 'on'),
(839, 131, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392497214{margin-bottom: 0px !important;}'),
(840, 131, 'slide_template', 'default'),
(841, 131, '_wpb_vc_js_status', 'true'),
(842, 131, '_wp_old_slug', 'hello-world'),
(843, 131, '_dp_original', '1'),
(844, 131, '_thumbnail_id', '5588'),
(845, 131, 'title_box_bg_repeat', 'repeat'),
(846, 131, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392497214{margin-bottom: 0px !important;}'),
(849, 133, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1540903917909{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392485870{margin-bottom: 0px !important;}'),
(850, 133, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1540903917909{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392485870{margin-bottom: 0px !important;}'),
(851, 133, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1540903917909{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392485870{margin-bottom: 0px !important;}'),
(852, 133, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1540903917909{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392485870{margin-bottom: 0px !important;}'),
(853, 133, 'slide_template', 'default'),
(854, 133, '_wpb_vc_js_status', 'true'),
(855, 133, '_wp_old_slug', 'hello-world'),
(856, 133, '_dp_original', '131'),
(857, 133, '_thumbnail_id', '5588'),
(858, 133, 'title_box_bg_repeat', 'repeat'),
(859, 133, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1540903917909{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392485870{margin-bottom: 0px !important;}'),
(860, 133, 'enable_transparent', 'on'),
(861, 133, 'disable_title', 'on'),
(864, 135, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1452689908335{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392473575{margin-bottom: 0px !important;}'),
(865, 135, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1452689908335{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392473575{margin-bottom: 0px !important;}'),
(866, 135, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1452689908335{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392473575{margin-bottom: 0px !important;}'),
(867, 135, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1452689908335{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392473575{margin-bottom: 0px !important;}'),
(868, 135, 'slide_template', 'default'),
(869, 135, '_wpb_vc_js_status', 'true'),
(870, 135, '_wp_old_slug', 'hello-world'),
(871, 135, '_dp_original', '133'),
(872, 135, 'enable_transparent', 'on'),
(873, 135, 'title_box_bg_repeat', 'repeat'),
(874, 135, 'disable_title', 'on'),
(875, 135, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1452689908335{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392473575{margin-bottom: 0px !important;}'),
(876, 135, '_wp_old_slug', '8-tips-for-building-a-bankable-business'),
(877, 135, '_thumbnail_id', '5588'),
(880, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(881, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(882, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(883, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(884, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(886, 738, '_wpb_vc_js_status', 'true'),
(887, 738, '_wp_old_slug', 'hello-world'),
(888, 738, '_wp_old_slug', '8-tips-for-building-a-bankable-business'),
(889, 738, 'enable_transparent', 'on'),
(890, 738, 'title_box_bg_repeat', 'repeat'),
(891, 738, 'disable_title', 'on'),
(892, 738, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(893, 738, '_wp_old_date', '2016-01-22'),
(894, 738, '_dp_original', '135'),
(895, 738, '_thumbnail_id', '6945'),
(896, 889, '_download_expiry', '-1'),
(897, 889, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(898, 889, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(899, 889, '_visibility', 'visible'),
(900, 889, '_stock_status', 'instock'),
(901, 889, 'total_sales', '0'),
(902, 889, '_downloadable', 'no'),
(903, 889, '_virtual', 'no'),
(904, 889, '_product_image_gallery', ''),
(905, 889, '_regular_price', '16'),
(906, 889, '_sale_price', ''),
(907, 889, '_tax_status', ''),
(908, 889, '_tax_class', ''),
(909, 889, '_purchase_note', ''),
(910, 889, '_featured', 'no'),
(911, 889, '_weight', ''),
(912, 889, '_length', ''),
(913, 889, '_width', ''),
(914, 889, '_height', ''),
(915, 889, '_sku', ''),
(916, 889, '_product_attributes', 'a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),
(917, 889, '_sale_price_dates_from', ''),
(918, 889, '_sale_price_dates_to', ''),
(919, 889, '_price', '16'),
(920, 889, '_sold_individually', ''),
(921, 889, '_stock', ''),
(922, 889, '_backorders', 'no'),
(923, 889, '_manage_stock', 'no'),
(924, 889, '_min_variation_price', '30'),
(925, 889, '_max_variation_price', '35'),
(926, 889, '_min_variation_regular_price', '35'),
(927, 889, '_max_variation_regular_price', '35'),
(928, 889, '_min_variation_sale_price', '30'),
(929, 889, '_max_variation_sale_price', '30'),
(930, 889, '_default_attributes', 'a:1:{s:8:\"pa_color\";s:5:\"black\";}'),
(931, 889, '_crosssell_ids', 'a:1:{i:0;i:22;}'),
(932, 889, '_thumbnail_id', '5588'),
(933, 889, '_upsell_ids', 'a:0:{}'),
(934, 889, '_min_price_variation_id', '898'),
(935, 889, '_max_price_variation_id', '41'),
(936, 889, '_min_regular_price_variation_id', '898'),
(937, 889, '_max_regular_price_variation_id', '898'),
(938, 889, '_min_sale_price_variation_id', '898'),
(939, 889, '_max_sale_price_variation_id', '898'),
(940, 889, '_product_version', '3.6.4'),
(941, 889, 'slide_template', 'default'),
(942, 889, 'title_box_bg_repeat', 'repeat');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(943, 889, '_download_limit', '-1'),
(944, 889, '_wc_average_rating', '0'),
(945, 889, '_wc_review_count', '0'),
(946, 892, '_download_expiry', '-1'),
(947, 892, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(948, 892, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(949, 892, '_visibility', 'visible'),
(950, 892, '_stock_status', 'instock'),
(951, 892, 'total_sales', '0'),
(952, 892, '_downloadable', 'no'),
(953, 892, '_virtual', 'no'),
(954, 892, '_product_image_gallery', ''),
(955, 892, '_regular_price', '35'),
(956, 892, '_sale_price', ''),
(957, 892, '_tax_status', ''),
(958, 892, '_tax_class', ''),
(959, 892, '_purchase_note', ''),
(960, 892, '_featured', 'no'),
(961, 892, '_weight', ''),
(962, 892, '_length', ''),
(963, 892, '_width', ''),
(964, 892, '_height', ''),
(965, 892, '_sku', ''),
(966, 892, '_product_attributes', 'a:0:{}'),
(967, 892, '_sale_price_dates_from', ''),
(968, 892, '_sale_price_dates_to', ''),
(969, 892, '_price', '35'),
(970, 892, '_sold_individually', ''),
(971, 892, '_stock', ''),
(972, 892, '_backorders', 'no'),
(973, 892, '_manage_stock', 'no'),
(974, 892, '_crosssell_ids', 'a:1:{i:0;i:37;}'),
(975, 892, 'slide_template', 'default'),
(976, 892, '_thumbnail_id', '5588'),
(977, 892, '_upsell_ids', 'a:0:{}'),
(978, 892, '_product_version', '3.6.4'),
(979, 892, 'title_box_bg_repeat', 'repeat'),
(980, 892, '_download_limit', '-1'),
(981, 892, '_wc_average_rating', '0'),
(982, 892, '_wc_review_count', '0'),
(983, 895, '_download_limit', '-1'),
(984, 895, '_download_expiry', '-1'),
(985, 895, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(986, 895, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(987, 895, '_visibility', 'visible'),
(988, 895, '_stock_status', 'instock'),
(989, 895, 'total_sales', '1'),
(990, 895, '_downloadable', 'no'),
(991, 895, '_virtual', 'no'),
(992, 895, '_product_image_gallery', ''),
(993, 895, '_regular_price', '15'),
(994, 895, '_sale_price', '12'),
(995, 895, '_tax_status', ''),
(996, 895, '_tax_class', ''),
(997, 895, '_purchase_note', ''),
(998, 895, '_featured', 'no'),
(999, 895, '_weight', ''),
(1000, 895, '_length', ''),
(1001, 895, '_width', ''),
(1002, 895, '_height', ''),
(1003, 895, '_sku', ''),
(1004, 895, '_product_attributes', 'a:0:{}'),
(1005, 895, '_sale_price_dates_from', ''),
(1006, 895, '_sale_price_dates_to', ''),
(1007, 895, '_price', '12'),
(1008, 895, '_sold_individually', ''),
(1009, 895, '_stock', ''),
(1010, 895, '_backorders', 'no'),
(1011, 895, '_manage_stock', 'no'),
(1012, 895, 'slide_template', 'default'),
(1013, 895, '_upsell_ids', 'a:0:{}'),
(1014, 895, '_crosssell_ids', 'a:0:{}'),
(1015, 895, '_product_version', '3.6.4'),
(1016, 895, 'title_box_bg_repeat', 'repeat'),
(1017, 895, '_thumbnail_id', '5588'),
(1018, 895, '_wc_average_rating', '0'),
(1019, 895, '_wc_review_count', '0'),
(1020, 900, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1021, 900, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1022, 900, '_visibility', 'visible'),
(1023, 900, '_stock_status', 'instock'),
(1024, 900, 'total_sales', '8'),
(1025, 900, '_downloadable', 'yes'),
(1026, 900, '_virtual', 'no'),
(1027, 900, '_product_image_gallery', ''),
(1028, 900, '_regular_price', '15'),
(1029, 900, '_sale_price', ''),
(1030, 900, '_tax_status', ''),
(1031, 900, '_tax_class', ''),
(1032, 900, '_purchase_note', ''),
(1033, 900, '_featured', 'no'),
(1034, 900, '_weight', ''),
(1035, 900, '_length', ''),
(1036, 900, '_width', ''),
(1037, 900, '_height', ''),
(1038, 900, '_sku', ''),
(1039, 900, '_product_attributes', 'a:0:{}'),
(1040, 900, '_sale_price_dates_from', ''),
(1041, 900, '_sale_price_dates_to', ''),
(1042, 900, '_price', '15'),
(1043, 900, '_sold_individually', ''),
(1044, 900, '_stock', ''),
(1045, 900, '_backorders', 'no'),
(1046, 900, '_manage_stock', 'no'),
(1047, 900, '_file_paths', 'a:0:{}'),
(1048, 900, '_download_limit', ''),
(1049, 900, '_download_expiry', ''),
(1050, 900, '_wc_rating_count', 'a:0:{}'),
(1051, 900, '_wc_average_rating', '0'),
(1052, 900, '_wc_review_count', '0'),
(1053, 900, '_thumbnail_id', '5588'),
(1054, 900, '_upsell_ids', 'a:0:{}'),
(1055, 900, '_crosssell_ids', 'a:0:{}'),
(1056, 900, '_downloadable_files', 'a:0:{}'),
(1057, 900, '_download_type', ''),
(1058, 900, '_product_version', '2.5.1'),
(1059, 900, 'slide_template', 'default'),
(1060, 900, 'title_box_bg_repeat', 'repeat'),
(1061, 901, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1062, 901, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1063, 901, '_visibility', 'visible'),
(1064, 901, '_stock_status', 'instock'),
(1065, 901, 'total_sales', '7'),
(1066, 901, '_downloadable', 'yes'),
(1067, 901, '_virtual', 'no'),
(1068, 901, '_product_image_gallery', ''),
(1069, 901, '_regular_price', '9'),
(1070, 901, '_sale_price', ''),
(1071, 901, '_tax_status', ''),
(1072, 901, '_tax_class', ''),
(1073, 901, '_purchase_note', ''),
(1074, 901, '_featured', 'no'),
(1075, 901, '_weight', ''),
(1076, 901, '_length', ''),
(1077, 901, '_width', ''),
(1078, 901, '_height', ''),
(1079, 901, '_sku', ''),
(1080, 901, '_product_attributes', 'a:0:{}'),
(1081, 901, '_sale_price_dates_from', ''),
(1082, 901, '_sale_price_dates_to', ''),
(1083, 901, '_price', '9'),
(1084, 901, '_sold_individually', ''),
(1085, 901, '_stock', ''),
(1086, 901, '_backorders', 'no'),
(1087, 901, '_manage_stock', 'no'),
(1088, 901, '_file_paths', 'a:0:{}'),
(1089, 901, '_download_limit', ''),
(1090, 901, '_download_expiry', ''),
(1091, 901, '_thumbnail_id', '5588'),
(1092, 901, '_upsell_ids', 'a:0:{}'),
(1093, 901, '_crosssell_ids', 'a:0:{}'),
(1094, 901, '_downloadable_files', 'a:0:{}'),
(1095, 901, '_download_type', ''),
(1096, 901, '_product_version', '3.6.4'),
(1097, 901, 'slide_template', 'default'),
(1098, 901, 'title_box_bg_repeat', 'repeat'),
(1099, 901, '_wc_average_rating', '0'),
(1100, 901, '_wc_review_count', '0'),
(1101, 902, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1102, 902, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1103, 902, '_visibility', 'visible'),
(1104, 902, '_stock_status', 'instock'),
(1105, 902, 'total_sales', '0'),
(1106, 902, '_downloadable', 'yes'),
(1107, 902, '_virtual', 'no'),
(1108, 902, '_product_image_gallery', ''),
(1109, 902, '_regular_price', '99'),
(1110, 902, '_sale_price', ''),
(1111, 902, '_tax_status', ''),
(1112, 902, '_tax_class', ''),
(1113, 902, '_purchase_note', ''),
(1114, 902, '_featured', 'no'),
(1115, 902, '_weight', ''),
(1116, 902, '_length', ''),
(1117, 902, '_width', ''),
(1118, 902, '_height', ''),
(1119, 902, '_sku', ''),
(1120, 902, '_product_attributes', 'a:0:{}'),
(1121, 902, '_sale_price_dates_from', ''),
(1122, 902, '_sale_price_dates_to', ''),
(1123, 902, '_price', '99'),
(1124, 902, '_sold_individually', ''),
(1125, 902, '_stock', ''),
(1126, 902, '_backorders', 'no'),
(1127, 902, '_manage_stock', 'no'),
(1128, 902, '_file_paths', 'a:0:{}'),
(1129, 902, '_download_limit', ''),
(1130, 902, '_download_expiry', ''),
(1131, 902, '_thumbnail_id', '5588'),
(1132, 902, '_upsell_ids', 'a:0:{}'),
(1133, 902, '_crosssell_ids', 'a:0:{}'),
(1134, 902, '_downloadable_files', 'a:0:{}'),
(1135, 902, '_download_type', ''),
(1136, 902, '_product_version', '3.6.4'),
(1137, 902, 'slide_template', 'default'),
(1138, 902, 'title_box_bg_repeat', 'repeat'),
(1139, 902, '_wc_average_rating', '0'),
(1140, 902, '_wc_review_count', '0'),
(1141, 903, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1142, 903, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1143, 903, '_visibility', 'visible'),
(1144, 903, '_stock_status', 'instock'),
(1145, 903, 'total_sales', '0'),
(1146, 903, '_downloadable', 'yes'),
(1147, 903, '_virtual', 'no'),
(1148, 903, '_product_image_gallery', '906,907,909'),
(1149, 903, '_regular_price', '30'),
(1150, 903, '_sale_price', ''),
(1151, 903, '_tax_status', ''),
(1152, 903, '_tax_class', ''),
(1153, 903, '_purchase_note', ''),
(1154, 903, '_featured', 'no'),
(1155, 903, '_weight', ''),
(1156, 903, '_length', ''),
(1157, 903, '_width', ''),
(1158, 903, '_height', ''),
(1159, 903, '_sku', ''),
(1160, 903, '_product_attributes', 'a:0:{}'),
(1161, 903, '_sale_price_dates_from', ''),
(1162, 903, '_sale_price_dates_to', ''),
(1163, 903, '_price', '30'),
(1164, 903, '_sold_individually', ''),
(1165, 903, '_stock', ''),
(1166, 903, '_backorders', 'no'),
(1167, 903, '_manage_stock', 'no'),
(1168, 903, '_file_paths', 'a:0:{}'),
(1169, 903, '_download_limit', ''),
(1170, 903, '_download_expiry', ''),
(1171, 903, '_wc_rating_count', 'a:0:{}'),
(1172, 903, '_wc_average_rating', '0'),
(1173, 903, '_upsell_ids', 'a:0:{}'),
(1174, 903, '_crosssell_ids', 'a:0:{}'),
(1175, 903, '_downloadable_files', 'a:0:{}'),
(1176, 903, '_download_type', ''),
(1177, 903, '_product_version', '2.5.1'),
(1178, 903, 'slide_template', 'default'),
(1179, 903, 'title_box_bg_repeat', 'repeat'),
(1180, 903, '_thumbnail_id', '5588'),
(1181, 903, '_wc_review_count', '0'),
(1184, 1076, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392508550{margin-bottom: 0px !important;}'),
(1185, 1076, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392508550{margin-bottom: 0px !important;}'),
(1186, 1076, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392508550{margin-bottom: 0px !important;}'),
(1187, 1076, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392508550{margin-bottom: 0px !important;}'),
(1188, 1076, 'slide_template', 'default'),
(1189, 1076, '_wpb_vc_js_status', 'true'),
(1190, 1076, '_wp_old_slug', 'hello-world'),
(1191, 1076, '_thumbnail_id', '5588'),
(1192, 1076, 'title_box_bg_repeat', 'repeat'),
(1193, 1076, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392508550{margin-bottom: 0px !important;}'),
(1194, 1076, 'enable_transparent', 'on'),
(1195, 1076, 'disable_title', 'on'),
(1198, 2194, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392452271{margin-bottom: 0px !important;}'),
(1199, 2194, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392452271{margin-bottom: 0px !important;}'),
(1200, 2194, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392452271{margin-bottom: 0px !important;}'),
(1201, 2194, 'disable_title', 'on'),
(1202, 2194, 'enable_transparent', 'on'),
(1203, 2194, '_wp_old_slug', 'within-the-construction-industry-as-their-overdraft-2'),
(1204, 2194, 'slide_template', 'default'),
(1205, 2194, 'title_box_bg_repeat', 'no-repeat'),
(1206, 2194, '_wpb_vc_js_status', 'true'),
(1207, 2194, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392452271{margin-bottom: 0px !important;}'),
(1208, 2194, '_thumbnail_id', '5588'),
(1209, 2194, '_wp_old_slug', 'within-the-construction-industry'),
(1210, 2194, '_wp_old_slug', 'goldman-sachs-warns-against-falling-in-love-with-stock-buybacks'),
(1211, 2194, '_wp_old_slug', 'when-smbs-go-to-the-cloud-on-premises-it-infrastructure-is-still-necessary'),
(1214, 2196, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392437751{margin-bottom: 0px !important;}'),
(1215, 2196, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392437751{margin-bottom: 0px !important;}'),
(1216, 2196, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392437751{margin-bottom: 0px !important;}'),
(1217, 2196, 'disable_title', 'on'),
(1218, 2196, 'enable_transparent', 'on'),
(1219, 2196, '_wp_old_slug', 'strategic-and-commercial-approach-with-issues'),
(1220, 2196, 'slide_template', 'default'),
(1221, 2196, 'title_box_bg_repeat', 'no-repeat'),
(1222, 2196, '_wpb_vc_js_status', 'true'),
(1223, 2196, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392437751{margin-bottom: 0px !important;}'),
(1224, 2196, '_wp_old_slug', 'biopharma-and-sciences-from-our-life'),
(1225, 2196, '_wp_old_slug', 'the-top-10-best-antivirus-providers-for-mac-2018'),
(1226, 2196, '_wp_old_slug', 'how-the-nfl-draft-went-from-a-hotel-ballroom-to-an-all-out-spectacle'),
(1227, 2196, '_wp_old_slug', 'seattles-proposed-tax-to-fight-homelessness-may-hit-amazon-hardest'),
(1228, 2196, '_wp_old_slug', 'financial-steps-to-consider-before-you-start-a-family-2'),
(1229, 2196, '_wp_old_slug', 'financial-steps-to-consider-before-you-start-a-family'),
(1230, 2196, '_wp_old_slug', 'financial-steps-to-consider-before-you-start'),
(1231, 2196, '_thumbnail_id', '5588'),
(1234, 2199, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(1235, 2199, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(1236, 2199, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(1237, 2199, 'disable_title', 'on'),
(1238, 2199, 'enable_transparent', 'on'),
(1239, 2199, '_wp_old_slug', 'retail-banks-wake-up-to-digital-lending-this-year'),
(1241, 2199, 'title_box_bg_repeat', 'no-repeat'),
(1242, 2199, '_wpb_vc_js_status', 'true'),
(1243, 2199, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(1244, 2199, '_wp_old_slug', 'strategic-commercial-approach'),
(1245, 2199, '_wp_old_slug', 'this-10-min-stretch-routine-can-eliminate-back-pain-sciatica-and-stiffness'),
(1246, 2199, '_wp_old_slug', 'financial-steps-to-consider-before-you-start-a-family'),
(1247, 2199, '_wp_old_slug', 'a-fruitful-retirement-social-security-benefit-2'),
(1248, 2199, '_thumbnail_id', '6953'),
(1251, 2202, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392383562{margin-bottom: 0px !important;}'),
(1252, 2202, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392383562{margin-bottom: 0px !important;}'),
(1253, 2202, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392383562{margin-bottom: 0px !important;}'),
(1254, 2202, 'disable_title', 'on'),
(1255, 2202, 'enable_transparent', 'on'),
(1256, 2202, '_wp_old_slug', 'a-digital-prescription-for-the-pharma-industry-2'),
(1258, 2202, 'title_box_bg_repeat', 'no-repeat'),
(1259, 2202, '_wpb_vc_js_status', 'true'),
(1260, 2202, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392383562{margin-bottom: 0px !important;}'),
(1261, 2202, '_wp_old_slug', 'international-business-opportunities'),
(1262, 2202, '_wp_old_slug', 'zuckerberg-faces-formal-summons-from-mps'),
(1263, 2202, '_wp_old_slug', 'understanding-marginal-income-tax-brackets'),
(1264, 2202, '_thumbnail_id', '6949'),
(1265, 2202, '_wp_old_slug', 'georgia-governor-candidate-stacey-abrams-is-200000-in-debt-shes-not-alone'),
(1266, 2202, '_wp_old_slug', 'a-fruitful-retirement-social-security-benefit'),
(1267, 6326, 'slide_template', 'default'),
(1268, 6326, 'title_box_bg_repeat', 'no-repeat'),
(1269, 6326, '_wp_page_template', 'default'),
(1270, 6326, 'enable_transparent', 'on'),
(1271, 6326, '_wpb_vc_js_status', 'true'),
(1272, 6333, '_wpb_shortcodes_custom_css', '.vc_custom_1575960477898{background-color: #f2f4fa !important;}'),
(1273, 6333, '_wpb_shortcodes_custom_css', '.vc_custom_1575960477898{background-color: #f2f4fa !important;}'),
(1274, 6333, '_wpb_shortcodes_custom_css', '.vc_custom_1575960477898{background-color: #f2f4fa !important;}'),
(1275, 6333, 'slide_template', 'default'),
(1276, 6333, 'title_box_bg_repeat', 'no-repeat'),
(1277, 6333, 'enable_transparent', 'on'),
(1278, 6333, '_wp_page_template', 'default'),
(1279, 6333, '_wpb_vc_js_status', 'true'),
(1280, 6333, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1575960477898{background-color: #f2f4fa !important;}'),
(1281, 6786, 'slide_template', 'default'),
(1282, 6786, 'rs_page_bg_color', '#ffffff'),
(1283, 6786, 'title_box_bg_repeat', 'no-repeat'),
(1284, 6786, '_wpb_vc_js_status', 'true'),
(1285, 6786, '_wp_page_template', 'default'),
(1286, 41, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1287, 41, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1288, 41, '_sku', ''),
(1289, 41, '_weight', ''),
(1290, 41, '_length', ''),
(1291, 41, '_width', ''),
(1292, 41, '_height', ''),
(1293, 41, '_stock', ''),
(1294, 41, '_virtual', 'no'),
(1295, 41, '_downloadable', 'no'),
(1296, 41, '_regular_price', '35'),
(1297, 41, '_sale_price', ''),
(1298, 41, '_sale_price_dates_from', ''),
(1299, 41, '_sale_price_dates_to', ''),
(1300, 41, '_price', '35'),
(1301, 41, '_tax_class', ''),
(1302, 41, '_download_limit', ''),
(1303, 41, '_download_expiry', ''),
(1304, 41, '_file_paths', ''),
(1305, 41, 'attribute_pa_color', 'black'),
(1306, 430, '_wpb_shortcodes_custom_css', '.vc_custom_1459506394637{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1307, 430, '_wpb_shortcodes_custom_css', '.vc_custom_1459506394637{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1308, 430, '_wpb_shortcodes_custom_css', '.vc_custom_1459506394637{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1309, 430, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1310, 430, '_wpb_shortcodes_custom_css', '.vc_custom_1459506394637{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1311, 430, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1312, 430, 'slide_template', 'default'),
(1313, 430, 'department', 'Project Management'),
(1314, 430, 'location', 'Richland, WA, US'),
(1315, 430, '_wpb_vc_js_status', 'true'),
(1316, 430, 'title_box_bg_repeat', 'repeat'),
(1317, 430, '_wpb_shortcodes_custom_css', '.vc_custom_1459506394637{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1318, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1459506413571{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1319, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1459506413571{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1320, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1459506413571{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1321, 432, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1322, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1459506413571{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1323, 432, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1324, 432, 'slide_template', 'default'),
(1325, 432, 'department', 'Project Management'),
(1326, 432, 'location', 'Toronto,Ontario, CA'),
(1327, 432, '_wpb_vc_js_status', 'true'),
(1328, 432, 'title_box_bg_repeat', 'repeat'),
(1329, 432, 'disable_title', 'on'),
(1330, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1459506413571{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1331, 433, '_wpb_shortcodes_custom_css', '.vc_custom_1459506432117{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1332, 433, '_wpb_shortcodes_custom_css', '.vc_custom_1459506432117{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1333, 433, '_wpb_shortcodes_custom_css', '.vc_custom_1459506432117{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1334, 433, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1335, 433, '_wpb_shortcodes_custom_css', '.vc_custom_1459506432117{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1336, 433, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1337, 433, 'slide_template', 'default'),
(1338, 433, 'department', 'Project Management'),
(1339, 433, 'location', 'Houston, TX, US'),
(1340, 433, '_wpb_vc_js_status', 'true'),
(1341, 433, 'title_box_bg_repeat', 'repeat'),
(1342, 433, '_wpb_shortcodes_custom_css', '.vc_custom_1459506432117{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1459505851233{margin-bottom: 0px !important;}'),
(1343, 433, 'disable_title', 'on'),
(1344, 433, 'disable_title_box', 'on'),
(1345, 434, '_wpb_shortcodes_custom_css', '.vc_custom_1459506457265{margin-bottom: 100px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1574412790143{margin-bottom: 30px !important;}.vc_custom_1574412851264{margin-bottom: 35px !important;}.vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}'),
(1346, 434, '_wpb_shortcodes_custom_css', '.vc_custom_1459506457265{margin-bottom: 100px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1574412790143{margin-bottom: 30px !important;}.vc_custom_1574412851264{margin-bottom: 35px !important;}.vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}'),
(1347, 434, '_wpb_shortcodes_custom_css', '.vc_custom_1459506457265{margin-bottom: 100px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1574412790143{margin-bottom: 30px !important;}.vc_custom_1574412851264{margin-bottom: 35px !important;}.vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}'),
(1348, 434, 'compensation', '22K per annum'),
(1349, 434, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1459506457265{margin-bottom: 100px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1574412790143{margin-bottom: 30px !important;}.vc_custom_1574412851264{margin-bottom: 35px !important;}.vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}'),
(1350, 434, 'education', 'Master’s Degree'),
(1351, 434, 'slide_template', 'default'),
(1352, 434, 'department', 'Civil Construction'),
(1353, 434, 'location', 'Oak Ridge, TN, US'),
(1354, 434, '_wpb_vc_js_status', 'true'),
(1355, 434, 'title_box_bg_repeat', 'repeat'),
(1356, 434, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1459506457265{margin-bottom: 100px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1574412790143{margin-bottom: 30px !important;}.vc_custom_1574412851264{margin-bottom: 35px !important;}.vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}'),
(1357, 434, 'enable_transparent', 'on'),
(1358, 434, 'disable_title', 'on'),
(1359, 434, 'contact_link', '#'),
(1360, 434, '_wp_old_date', '2016-01-08'),
(1361, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1459506373488{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1545390826746{margin-bottom: 0px !important;}'),
(1362, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1459506373488{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1545390826746{margin-bottom: 0px !important;}'),
(1363, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1459506373488{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1545390826746{margin-bottom: 0px !important;}'),
(1364, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1459506373488{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1545390826746{margin-bottom: 0px !important;}'),
(1365, 435, 'slide_template', 'default'),
(1366, 435, 'department', 'Project Management'),
(1367, 435, 'location', 'Brooklyn, NY, US'),
(1368, 435, '_wpb_vc_js_status', 'true'),
(1369, 435, 'enable_transparent', 'on'),
(1370, 435, 'title_box_bg_repeat', 'repeat'),
(1371, 435, 'disable_title', 'on'),
(1372, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1459506373488{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453112586637{margin-bottom: 60px !important;}.vc_custom_1453114022217{margin-bottom: 60px !important;}.vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}.vc_custom_1545390826746{margin-bottom: 0px !important;}'),
(1373, 435, 'education', 'Master\'s Degree'),
(1374, 435, 'compensation', '22K per annum'),
(1375, 435, 'contact_link', '#'),
(1376, 898, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1377, 898, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1378, 898, '_sku', ''),
(1379, 898, '_weight', ''),
(1380, 898, '_length', ''),
(1381, 898, '_width', ''),
(1382, 898, '_height', ''),
(1383, 898, '_stock', ''),
(1384, 898, '_virtual', 'no'),
(1385, 898, '_downloadable', 'no'),
(1386, 898, '_regular_price', '35'),
(1387, 898, '_sale_price', '30'),
(1388, 898, '_sale_price_dates_from', ''),
(1389, 898, '_sale_price_dates_to', ''),
(1390, 898, '_price', '30'),
(1391, 898, '_tax_class', ''),
(1392, 898, '_download_limit', ''),
(1393, 898, '_download_expiry', ''),
(1394, 898, '_file_paths', ''),
(1395, 898, 'attribute_pa_color', 'blue'),
(1396, 904, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1397, 904, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1398, 904, '_visibility', 'visible'),
(1399, 904, '_stock_status', 'instock'),
(1400, 904, 'total_sales', '1'),
(1401, 904, '_downloadable', 'yes'),
(1402, 904, '_virtual', 'no'),
(1403, 904, '_product_image_gallery', ''),
(1404, 904, '_regular_price', '9'),
(1405, 904, '_sale_price', ''),
(1406, 904, '_tax_status', ''),
(1407, 904, '_tax_class', ''),
(1408, 904, '_purchase_note', ''),
(1409, 904, '_featured', 'no'),
(1410, 904, '_weight', ''),
(1411, 904, '_length', ''),
(1412, 904, '_width', ''),
(1413, 904, '_height', ''),
(1414, 904, '_sku', ''),
(1415, 904, '_product_attributes', 'a:0:{}'),
(1416, 904, '_sale_price_dates_from', ''),
(1417, 904, '_sale_price_dates_to', ''),
(1418, 904, '_price', '9'),
(1419, 904, '_sold_individually', ''),
(1420, 904, '_stock', ''),
(1421, 904, '_backorders', 'no'),
(1422, 904, '_manage_stock', 'no'),
(1423, 904, '_file_paths', 'a:0:{}'),
(1424, 904, '_download_limit', ''),
(1425, 904, '_download_expiry', ''),
(1426, 904, '_thumbnail_id', '5588'),
(1427, 904, '_upsell_ids', 'a:0:{}'),
(1428, 904, '_crosssell_ids', 'a:0:{}'),
(1429, 904, '_downloadable_files', 'a:0:{}'),
(1430, 904, '_download_type', ''),
(1431, 904, '_product_version', '3.6.4'),
(1432, 904, 'slide_template', 'default'),
(1433, 904, 'title_box_bg_repeat', 'repeat'),
(1434, 904, '_wc_average_rating', '0'),
(1435, 904, '_wc_review_count', '0'),
(1436, 905, '_download_expiry', '-1'),
(1437, 905, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1438, 905, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(1439, 905, '_visibility', 'visible'),
(1440, 905, '_stock_status', 'instock'),
(1441, 905, 'total_sales', '0'),
(1442, 905, '_downloadable', 'no'),
(1443, 905, '_virtual', 'no'),
(1444, 905, '_product_image_gallery', ''),
(1445, 905, '_regular_price', '3'),
(1446, 905, '_sale_price', '2'),
(1447, 905, '_tax_status', ''),
(1448, 905, '_tax_class', ''),
(1449, 905, '_purchase_note', ''),
(1450, 905, '_featured', 'no'),
(1451, 905, '_weight', ''),
(1452, 905, '_length', ''),
(1453, 905, '_width', ''),
(1454, 905, '_height', ''),
(1455, 905, '_sku', ''),
(1456, 905, '_product_attributes', 'a:0:{}'),
(1457, 905, '_sale_price_dates_from', ''),
(1458, 905, '_sale_price_dates_to', ''),
(1459, 905, '_price', '2'),
(1460, 905, '_sold_individually', ''),
(1461, 905, '_stock', ''),
(1462, 905, '_backorders', 'no'),
(1463, 905, '_manage_stock', 'no'),
(1464, 905, 'slide_template', 'default'),
(1465, 905, '_upsell_ids', 'a:0:{}'),
(1466, 905, '_crosssell_ids', 'a:0:{}'),
(1467, 905, '_product_version', '3.6.4'),
(1468, 905, 'title_box_bg_repeat', 'repeat'),
(1469, 905, '_thumbnail_id', '5588'),
(1470, 905, '_wc_average_rating', '0'),
(1471, 905, '_download_limit', '-1'),
(1472, 905, '_wc_review_count', '0'),
(1473, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1474, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1475, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1476, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1477, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1478, 1098, 'slide_template', 'default'),
(1479, 1098, 'enable_transparent', 'on'),
(1480, 1098, 'title_box_bg_repeat', 'repeat'),
(1481, 1098, 'disable_title', 'on'),
(1482, 1098, 'stm_event_speakers', '459'),
(1483, 1098, 'stm_event_count', '100'),
(1484, 1098, 'stm_event_date_start', '1584057600'),
(1485, 1098, 'stm_event_date_end', '1584057600'),
(1486, 1098, 'stm_event_time_start', '12:00 pm'),
(1487, 1098, 'stm_event_time_end', '3:00 pm'),
(1488, 1098, 'stm_event_venue', 'Juarez & Associates, 12139 National Boulevard, Los Angeles, CA, U.S.'),
(1489, 1098, 'stm_event_map_lat', '34.020534'),
(1490, 1098, 'stm_event_map_lng', '-118.444406'),
(1491, 1098, 'stm_event_tel', '212 497 5686'),
(1492, 1098, '_wpb_vc_js_status', 'true'),
(1493, 1098, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1494, 1098, '_thumbnail_id', '5588'),
(1495, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1496, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1497, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1498, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1499, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1500, 1099, '_thumbnail_id', '5588'),
(1501, 1099, 'slide_template', 'default'),
(1502, 1099, 'enable_transparent', 'on'),
(1503, 1099, 'title_box_bg_repeat', 'no-repeat'),
(1504, 1099, 'disable_title', 'on'),
(1505, 1099, 'stm_event_speakers', '458'),
(1506, 1099, 'stm_event_count', '100'),
(1507, 1099, 'stm_event_date_start', '1550707200'),
(1508, 1099, 'stm_event_date_end', '1550707200'),
(1509, 1099, 'stm_event_time_start', '7:00 PM'),
(1510, 1099, 'stm_event_time_end', '9:00 PM'),
(1511, 1099, 'stm_event_venue', 'Sandler Training, 7120 Hayvenhurst Avenue, Suite 322, Van Nuys, CA, U.S.'),
(1512, 1099, 'stm_event_map_lat', '34.200009'),
(1513, 1099, 'stm_event_map_lng', '-118.492077'),
(1514, 1099, 'stm_event_tel', '212 497 5686'),
(1515, 1099, '_wpb_vc_js_status', 'true'),
(1516, 1099, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1517, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1518, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1519, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1520, 1100, 'event_attended', '1'),
(1521, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1522, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1523, 1100, '_thumbnail_id', '5588'),
(1524, 1100, 'slide_template', 'default'),
(1525, 1100, 'enable_transparent', 'on'),
(1526, 1100, 'title_box_bg_repeat', 'no-repeat'),
(1527, 1100, 'disable_title', 'on'),
(1528, 1100, 'stm_event_speakers', '461'),
(1529, 1100, 'stm_event_count', '100'),
(1530, 1100, 'stm_event_date_start', '1550102400'),
(1531, 1100, 'stm_event_date_end', '1550102400'),
(1532, 1100, 'stm_event_time_start', '7:00 PM'),
(1533, 1100, 'stm_event_time_end', '9:00 PM'),
(1534, 1100, 'stm_event_venue', 'Ayres Hotel, 14400 Hindry Avenue, Hawthorne, CA, U.S.'),
(1535, 1100, 'stm_event_map_lat', '33.900760'),
(1536, 1100, 'stm_event_map_lng', '-118.371500'),
(1537, 1100, 'stm_event_tel', '212 497 5686'),
(1538, 1100, '_wpb_vc_js_status', 'true'),
(1539, 1100, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1540, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1541, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1542, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1543, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1544, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1545, 1101, '_thumbnail_id', '5588'),
(1546, 1101, 'slide_template', 'default'),
(1547, 1101, 'enable_transparent', 'on'),
(1548, 1101, 'title_box_bg_repeat', 'no-repeat'),
(1549, 1101, 'disable_title', 'on'),
(1550, 1101, 'stm_event_speakers', '448'),
(1551, 1101, 'stm_event_count', '100'),
(1552, 1101, 'stm_event_date_start', '1548288000'),
(1553, 1101, 'stm_event_date_end', '1548288000'),
(1554, 1101, 'stm_event_time_start', '9:00 PM'),
(1555, 1101, 'stm_event_time_end', '1:30 PM'),
(1556, 1101, 'stm_event_venue', 'Maggiano\'s, 205 Mall Boulevard, King of Prussia, PA, U.S.'),
(1557, 1101, 'stm_event_map_lat', '40.087129'),
(1558, 1101, 'stm_event_map_lng', '-75.395954'),
(1559, 1101, 'stm_event_tel', '212 497 5686'),
(1560, 1101, '_wpb_vc_js_status', 'true'),
(1561, 1101, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1562, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1563, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1564, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1565, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1566, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1567, 1102, '_thumbnail_id', '5588'),
(1568, 1102, 'slide_template', 'default'),
(1569, 1102, 'enable_transparent', 'on'),
(1570, 1102, 'title_box_bg_repeat', 'no-repeat'),
(1571, 1102, 'disable_title', 'on'),
(1572, 1102, 'stm_event_speakers', '460'),
(1573, 1102, 'stm_event_count', '100'),
(1574, 1102, 'stm_event_date_start', '1548374400'),
(1575, 1102, 'stm_event_date_end', '1548374400'),
(1576, 1102, 'stm_event_time_start', '6:00 PM'),
(1577, 1102, 'stm_event_time_end', '9:00 PM'),
(1578, 1102, 'stm_event_venue', 'Mimi\'s Café, 4030 Barranca Parkway, Irvine, CA, U.S.'),
(1579, 1102, 'stm_event_map_lat', '33.683144'),
(1580, 1102, 'stm_event_map_lng', '-117.807859'),
(1581, 1102, 'stm_event_tel', '212 497 5686'),
(1582, 1102, '_wpb_vc_js_status', 'true'),
(1583, 1102, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1584, 1102, 'event_attended', '1'),
(1585, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1586, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1587, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1588, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1589, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1590, 1103, '_thumbnail_id', '5588'),
(1591, 1103, 'slide_template', 'default'),
(1592, 1103, 'enable_transparent', 'on'),
(1593, 1103, 'title_box_bg_repeat', 'no-repeat'),
(1594, 1103, 'disable_title', 'on'),
(1595, 1103, 'stm_event_speakers', '449'),
(1596, 1103, 'stm_event_count', '100'),
(1597, 1103, 'stm_event_date_start', '1548288000'),
(1598, 1103, 'stm_event_date_end', '1548288000'),
(1599, 1103, 'stm_event_time_start', '7:30 PM'),
(1600, 1103, 'stm_event_time_end', '9:30 PM'),
(1601, 1103, 'stm_event_venue', 'The Lakes Golf Course & Driving Range 400 S. Sepulveda Boulevard, El Segundo, CA, U.S.'),
(1602, 1103, 'stm_event_map_lat', '33.931051'),
(1603, 1103, 'stm_event_map_lng', '-118.396249'),
(1604, 1103, 'stm_event_tel', '212 497 5686'),
(1605, 1103, '_wpb_vc_js_status', 'true'),
(1606, 1103, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1607, 1103, 'event_attended', '1'),
(1608, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1609, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1610, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1611, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1612, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1613, 1514, '_thumbnail_id', '5588'),
(1614, 1514, 'slide_template', 'default'),
(1615, 1514, 'enable_transparent', 'on'),
(1616, 1514, 'title_box_bg_repeat', 'no-repeat'),
(1617, 1514, 'disable_title', 'on'),
(1618, 1514, 'stm_event_speakers', '458'),
(1619, 1514, 'stm_event_count', '100'),
(1620, 1514, 'stm_event_date_start', '1550188800'),
(1621, 1514, 'stm_event_date_end', '1550188800'),
(1622, 1514, 'stm_event_time_start', '6:00 PM'),
(1623, 1514, 'stm_event_time_end', '8:30 PM'),
(1624, 1514, 'stm_event_venue', 'Blackfinn Ameripub, 1620 I Street NW, Washington, DC, U.S.'),
(1625, 1514, 'stm_event_map_lat', '38.901079'),
(1626, 1514, 'stm_event_map_lng', '-77.037518'),
(1627, 1514, 'stm_event_tel', '212 497 5686'),
(1628, 1514, '_wpb_vc_js_status', 'true'),
(1629, 1514, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1630, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1631, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1632, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1633, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1634, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1635, 1515, '_thumbnail_id', '5588'),
(1636, 1515, 'slide_template', 'default'),
(1637, 1515, 'enable_transparent', 'on'),
(1638, 1515, 'title_box_bg_repeat', 'no-repeat'),
(1639, 1515, 'disable_title', 'on'),
(1640, 1515, 'stm_event_speakers', '460'),
(1641, 1515, 'stm_event_count', '100'),
(1642, 1515, 'stm_event_date_start', '1548201600'),
(1643, 1515, 'stm_event_date_end', '1548201600'),
(1644, 1515, 'stm_event_time_start', '6:00 PM'),
(1645, 1515, 'stm_event_venue', 'Juarez & Associates, 12139 National Boulevard, Los Angeles, CA, U.S.'),
(1646, 1515, 'stm_event_map_lat', '34.020534'),
(1647, 1515, 'stm_event_map_lng', '-118.444406'),
(1648, 1515, 'stm_event_tel', '212 497 5686'),
(1649, 1515, '_wpb_vc_js_status', 'true'),
(1650, 1515, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1651, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1652, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1653, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1654, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1655, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1656, 1516, '_thumbnail_id', '5588'),
(1657, 1516, 'slide_template', 'default'),
(1658, 1516, 'enable_transparent', 'on'),
(1659, 1516, 'title_box_bg_repeat', 'no-repeat'),
(1660, 1516, 'disable_title', 'on'),
(1661, 1516, 'stm_event_speakers', '461'),
(1662, 1516, 'stm_event_count', '100'),
(1663, 1516, 'stm_event_date_start', '1538524800'),
(1664, 1516, 'stm_event_date_end', '1554940800'),
(1665, 1516, 'stm_event_time_start', '1:00 PM'),
(1666, 1516, 'stm_event_venue', 'Telos Club, Parthenon Conference Room, 13701 Dallas Parkway, Dallas, TX, U.S.'),
(1667, 1516, 'stm_event_map_lat', '32.935348'),
(1668, 1516, 'stm_event_map_lng', '-96.822841'),
(1669, 1516, 'stm_event_tel', '212 497 5686'),
(1670, 1516, '_wpb_vc_js_status', 'true'),
(1671, 1516, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}.vc_custom_1484550790519{margin-bottom: 16px !important;}.vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}.vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}.vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}.vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}'),
(1672, 1516, 'stm_event_time_end', '11:00 pm'),
(1673, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1674, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1675, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1676, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1677, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1678, 1517, '_thumbnail_id', '5588'),
(1679, 1517, 'slide_template', 'default'),
(1680, 1517, 'enable_transparent', 'on'),
(1681, 1517, 'title_box_bg_repeat', 'no-repeat'),
(1682, 1517, 'disable_title', 'on'),
(1683, 1517, 'stm_event_speakers', '459'),
(1684, 1517, 'stm_event_count', '100'),
(1685, 1517, 'stm_event_date_start', '1541548800'),
(1686, 1517, 'stm_event_date_end', '1541548800'),
(1687, 1517, 'stm_event_time_start', '1:00 am'),
(1688, 1517, 'stm_event_time_end', '10:00 pm'),
(1689, 1517, 'stm_event_venue', '6016 Spring Flower Trail, Dallas, TX, U.S.'),
(1690, 1517, 'stm_event_map_lat', '32.978362'),
(1691, 1517, 'stm_event_map_lng', '-96.801902'),
(1692, 1517, 'stm_event_tel', '212 497 5686'),
(1693, 1517, '_wpb_vc_js_status', 'true'),
(1694, 1517, '_wpb_shortcodes_custom_css', '.vc_custom_1484549823001{margin-top: -18px !important;}.vc_custom_1483967473543{margin-bottom: 20px !important;}'),
(1695, 1517, 'event_attended', '1'),
(1696, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1697, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1698, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1699, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1700, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1701, 1519, 'slide_template', 'default'),
(1702, 1519, 'enable_transparent', 'on'),
(1703, 1519, 'title_box_bg_repeat', 'no-repeat'),
(1704, 1519, 'disable_title', 'on'),
(1705, 1519, 'stm_portfolio_column', 'wide'),
(1706, 1519, '_wpb_vc_js_status', 'true'),
(1707, 1519, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718310746{margin-bottom: -60px !important;}.vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539797533{margin-bottom: 0px !important;}'),
(1708, 1519, '_thumbnail_id', '5588'),
(1709, 448, '_wpb_shortcodes_custom_css', '.vc_custom_1459506656739{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771857057{margin-bottom: 0px !important;}.vc_custom_1555505470049{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399436978{padding-right: 25px !important;}.vc_custom_1544771841586{margin-bottom: 18px !important;}.vc_custom_1544771845846{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640825982{margin-bottom: 0px !important;}'),
(1710, 448, '_wpb_shortcodes_custom_css', '.vc_custom_1459506656739{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771857057{margin-bottom: 0px !important;}.vc_custom_1555505470049{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399436978{padding-right: 25px !important;}.vc_custom_1544771841586{margin-bottom: 18px !important;}.vc_custom_1544771845846{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640825982{margin-bottom: 0px !important;}'),
(1711, 448, '_wpb_shortcodes_custom_css', '.vc_custom_1459506656739{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771857057{margin-bottom: 0px !important;}.vc_custom_1555505470049{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399436978{padding-right: 25px !important;}.vc_custom_1544771841586{margin-bottom: 18px !important;}.vc_custom_1544771845846{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640825982{margin-bottom: 0px !important;}'),
(1712, 448, '_thumbnail_id', '5588'),
(1713, 448, '_wpb_shortcodes_custom_css', '.vc_custom_1459506656739{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771857057{margin-bottom: 0px !important;}.vc_custom_1555505470049{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399436978{padding-right: 25px !important;}.vc_custom_1544771841586{margin-bottom: 18px !important;}.vc_custom_1544771845846{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640825982{margin-bottom: 0px !important;}'),
(1714, 448, 'slide_template', 'default'),
(1715, 448, 'department', 'Administrator'),
(1716, 448, 'title_box_bg_repeat', 'repeat'),
(1717, 448, 'phone', '+1 628 123 4000'),
(1718, 448, 'skype', '#'),
(1719, 448, 'email', 'brandon@cop.com'),
(1720, 448, 'facebook', '#'),
(1721, 448, 'twitter', '#'),
(1722, 448, 'google_plus', '#'),
(1723, 448, 'linkedin', '#'),
(1724, 448, '_wpb_vc_js_status', 'true'),
(1725, 448, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(1726, 448, '_wpb_shortcodes_custom_css', '.vc_custom_1459506656739{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771857057{margin-bottom: 0px !important;}.vc_custom_1555505470049{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399436978{padding-right: 25px !important;}.vc_custom_1544771841586{margin-bottom: 18px !important;}.vc_custom_1544771845846{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640825982{margin-bottom: 0px !important;}'),
(1727, 448, 'enable_transparent', 'on'),
(1728, 448, 'disable_title', 'on'),
(1729, 449, '_wpb_shortcodes_custom_css', '.vc_custom_1459506633330{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771905024{margin-bottom: 0px !important;}.vc_custom_1555493639458{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399445426{padding-right: 25px !important;}.vc_custom_1555493184421{margin-bottom: 18px !important;}.vc_custom_1555493192042{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640872348{margin-bottom: 0px !important;}'),
(1730, 449, '_wpb_shortcodes_custom_css', '.vc_custom_1459506633330{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771905024{margin-bottom: 0px !important;}.vc_custom_1555493639458{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399445426{padding-right: 25px !important;}.vc_custom_1555493184421{margin-bottom: 18px !important;}.vc_custom_1555493192042{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640872348{margin-bottom: 0px !important;}'),
(1731, 449, '_wpb_shortcodes_custom_css', '.vc_custom_1459506633330{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771905024{margin-bottom: 0px !important;}.vc_custom_1555493639458{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399445426{padding-right: 25px !important;}.vc_custom_1555493184421{margin-bottom: 18px !important;}.vc_custom_1555493192042{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640872348{margin-bottom: 0px !important;}'),
(1732, 449, '_thumbnail_id', '5588');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1733, 449, '_wpb_shortcodes_custom_css', '.vc_custom_1459506633330{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771905024{margin-bottom: 0px !important;}.vc_custom_1555493639458{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399445426{padding-right: 25px !important;}.vc_custom_1555493184421{margin-bottom: 18px !important;}.vc_custom_1555493192042{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640872348{margin-bottom: 0px !important;}'),
(1734, 449, 'slide_template', 'default'),
(1735, 449, 'department', 'Tax Consultant'),
(1736, 449, 'title_box_bg_repeat', 'repeat'),
(1737, 449, 'phone', '+1 628 123 4000'),
(1738, 449, 'skype', '#'),
(1739, 449, 'email', 'brandon@consulting.com'),
(1740, 449, 'facebook', '#'),
(1741, 449, 'twitter', '#'),
(1742, 449, 'google_plus', '#'),
(1743, 449, 'linkedin', '#'),
(1744, 449, '_wpb_vc_js_status', 'true'),
(1745, 449, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(1746, 449, '_wpb_shortcodes_custom_css', '.vc_custom_1459506633330{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771905024{margin-bottom: 0px !important;}.vc_custom_1555493639458{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399445426{padding-right: 25px !important;}.vc_custom_1555493184421{margin-bottom: 18px !important;}.vc_custom_1555493192042{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640872348{margin-bottom: 0px !important;}'),
(1747, 449, 'enable_transparent', 'on'),
(1748, 449, 'disable_title', 'on'),
(1749, 458, '_wpb_shortcodes_custom_css', '.vc_custom_1459506678667{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771815679{margin-bottom: 0px !important;}.vc_custom_1555505534359{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399429629{padding-right: 25px !important;}.vc_custom_1544771804013{margin-bottom: 18px !important;}.vc_custom_1544771808356{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640749399{margin-bottom: 0px !important;}'),
(1750, 458, '_wpb_shortcodes_custom_css', '.vc_custom_1459506678667{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771815679{margin-bottom: 0px !important;}.vc_custom_1555505534359{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399429629{padding-right: 25px !important;}.vc_custom_1544771804013{margin-bottom: 18px !important;}.vc_custom_1544771808356{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640749399{margin-bottom: 0px !important;}'),
(1751, 458, '_wpb_shortcodes_custom_css', '.vc_custom_1459506678667{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771815679{margin-bottom: 0px !important;}.vc_custom_1555505534359{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399429629{padding-right: 25px !important;}.vc_custom_1544771804013{margin-bottom: 18px !important;}.vc_custom_1544771808356{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640749399{margin-bottom: 0px !important;}'),
(1752, 458, '_thumbnail_id', '5588'),
(1753, 458, '_wpb_shortcodes_custom_css', '.vc_custom_1459506678667{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771815679{margin-bottom: 0px !important;}.vc_custom_1555505534359{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399429629{padding-right: 25px !important;}.vc_custom_1544771804013{margin-bottom: 18px !important;}.vc_custom_1544771808356{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640749399{margin-bottom: 0px !important;}'),
(1754, 458, 'slide_template', 'default'),
(1755, 458, 'department', 'Chief Marketing Officer'),
(1756, 458, 'title_box_bg_repeat', 'repeat'),
(1757, 458, 'phone', '+1 628 123 4000'),
(1758, 458, 'skype', '#'),
(1759, 458, 'email', 'brandon@cop.com'),
(1760, 458, 'facebook', '#'),
(1761, 458, 'twitter', '#'),
(1762, 458, 'google_plus', '#'),
(1763, 458, 'linkedin', '#'),
(1764, 458, '_wpb_vc_js_status', 'true'),
(1765, 458, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(1766, 458, '_wpb_shortcodes_custom_css', '.vc_custom_1459506678667{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771815679{margin-bottom: 0px !important;}.vc_custom_1555505534359{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399429629{padding-right: 25px !important;}.vc_custom_1544771804013{margin-bottom: 18px !important;}.vc_custom_1544771808356{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640749399{margin-bottom: 0px !important;}'),
(1767, 458, 'enable_transparent', 'on'),
(1768, 458, 'disable_title', 'on'),
(1769, 459, '_wpb_shortcodes_custom_css', '.vc_custom_1459506697614{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771775975{margin-bottom: 0px !important;}.vc_custom_1555505523708{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399396761{padding-right: 25px !important;}.vc_custom_1544771761492{margin-bottom: 18px !important;}.vc_custom_1544771766676{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640700637{margin-bottom: 0px !important;}'),
(1770, 459, '_wpb_shortcodes_custom_css', '.vc_custom_1459506697614{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771775975{margin-bottom: 0px !important;}.vc_custom_1555505523708{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399396761{padding-right: 25px !important;}.vc_custom_1544771761492{margin-bottom: 18px !important;}.vc_custom_1544771766676{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640700637{margin-bottom: 0px !important;}'),
(1771, 459, '_wpb_shortcodes_custom_css', '.vc_custom_1459506697614{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771775975{margin-bottom: 0px !important;}.vc_custom_1555505523708{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399396761{padding-right: 25px !important;}.vc_custom_1544771761492{margin-bottom: 18px !important;}.vc_custom_1544771766676{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640700637{margin-bottom: 0px !important;}'),
(1772, 459, '_thumbnail_id', '5588'),
(1773, 459, '_wpb_shortcodes_custom_css', '.vc_custom_1459506697614{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771775975{margin-bottom: 0px !important;}.vc_custom_1555505523708{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399396761{padding-right: 25px !important;}.vc_custom_1544771761492{margin-bottom: 18px !important;}.vc_custom_1544771766676{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640700637{margin-bottom: 0px !important;}'),
(1774, 459, 'slide_template', 'default'),
(1775, 459, 'department', 'VP Sales and Marketing'),
(1776, 459, 'title_box_bg_repeat', 'repeat'),
(1777, 459, 'phone', '+1 628 123 4000'),
(1778, 459, 'skype', '#'),
(1779, 459, 'email', 'ashley@cop.com'),
(1780, 459, 'facebook', '#'),
(1781, 459, 'twitter', '#'),
(1782, 459, 'google_plus', '#'),
(1783, 459, 'linkedin', '#'),
(1784, 459, '_wpb_vc_js_status', 'true'),
(1785, 459, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(1786, 459, '_wpb_shortcodes_custom_css', '.vc_custom_1459506697614{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771775975{margin-bottom: 0px !important;}.vc_custom_1555505523708{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399396761{padding-right: 25px !important;}.vc_custom_1544771761492{margin-bottom: 18px !important;}.vc_custom_1544771766676{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640700637{margin-bottom: 0px !important;}'),
(1787, 459, 'enable_transparent', 'on'),
(1788, 459, 'disable_title', 'on'),
(1789, 563, '_wpb_shortcodes_custom_css', '.vc_custom_1459506821943{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555482965649{margin-bottom: 45px !important;}.vc_custom_1456124747340{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456311950682{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456311933932{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456311924466{margin-bottom: 23px !important;}.vc_custom_1456311960466{margin-bottom: 23px !important;}.vc_custom_1456124766156{margin-bottom: 20px !important;}.vc_custom_1456311968834{margin-bottom: 20px !important;}.vc_custom_1545391401309{margin-bottom: 0px !important;}'),
(1790, 563, '_wpb_shortcodes_custom_css', '.vc_custom_1459506821943{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555482965649{margin-bottom: 45px !important;}.vc_custom_1456124747340{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456311950682{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456311933932{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456311924466{margin-bottom: 23px !important;}.vc_custom_1456311960466{margin-bottom: 23px !important;}.vc_custom_1456124766156{margin-bottom: 20px !important;}.vc_custom_1456311968834{margin-bottom: 20px !important;}.vc_custom_1545391401309{margin-bottom: 0px !important;}'),
(1791, 563, '_wpb_shortcodes_custom_css', '.vc_custom_1459506821943{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555482965649{margin-bottom: 45px !important;}.vc_custom_1456124747340{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456311950682{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456311933932{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456311924466{margin-bottom: 23px !important;}.vc_custom_1456311960466{margin-bottom: 23px !important;}.vc_custom_1456124766156{margin-bottom: 20px !important;}.vc_custom_1456311968834{margin-bottom: 20px !important;}.vc_custom_1545391401309{margin-bottom: 0px !important;}'),
(1792, 563, 'enable_transparent', 'on'),
(1793, 563, '_wpb_shortcodes_custom_css', '.vc_custom_1459506821943{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555482965649{margin-bottom: 45px !important;}.vc_custom_1456124747340{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456311950682{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456311933932{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456311924466{margin-bottom: 23px !important;}.vc_custom_1456311960466{margin-bottom: 23px !important;}.vc_custom_1456124766156{margin-bottom: 20px !important;}.vc_custom_1456311968834{margin-bottom: 20px !important;}.vc_custom_1545391401309{margin-bottom: 0px !important;}'),
(1794, 563, 'slide_template', 'default'),
(1795, 563, '_thumbnail_id', '5588'),
(1796, 563, 'title_box_bg_repeat', 'repeat'),
(1797, 563, '_wpb_vc_js_status', 'true'),
(1798, 563, '_wpb_shortcodes_custom_css', '.vc_custom_1459506821943{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555482965649{margin-bottom: 45px !important;}.vc_custom_1456124747340{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456311950682{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456311933932{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456311924466{margin-bottom: 23px !important;}.vc_custom_1456311960466{margin-bottom: 23px !important;}.vc_custom_1456124766156{margin-bottom: 20px !important;}.vc_custom_1456311968834{margin-bottom: 20px !important;}.vc_custom_1545391401309{margin-bottom: 0px !important;}'),
(1799, 563, 'service_label', 'New'),
(1800, 563, 'service_cost', '$49'),
(1801, 565, '_wpb_shortcodes_custom_css', '.vc_custom_1459506845772{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1456124849829{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1452770976377{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456310075877{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391387228{margin-bottom: 0px !important;}'),
(1802, 565, '_wpb_shortcodes_custom_css', '.vc_custom_1459506845772{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1456124849829{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1452770976377{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456310075877{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391387228{margin-bottom: 0px !important;}'),
(1803, 565, '_wpb_shortcodes_custom_css', '.vc_custom_1459506845772{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1456124849829{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1452770976377{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456310075877{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391387228{margin-bottom: 0px !important;}'),
(1804, 565, 'disable_title', 'on'),
(1805, 565, 'enable_transparent', 'on'),
(1806, 565, '_wpb_shortcodes_custom_css', '.vc_custom_1459506845772{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1456124849829{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1452770976377{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456310075877{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391387228{margin-bottom: 0px !important;}'),
(1807, 565, 'slide_template', 'default'),
(1808, 565, '_dp_original', '563'),
(1809, 565, '_wpb_vc_js_status', 'true'),
(1810, 565, '_thumbnail_id', '5588'),
(1811, 565, 'title_box_bg_repeat', 'repeat'),
(1812, 565, '_wpb_shortcodes_custom_css', '.vc_custom_1459506845772{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1456124849829{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1452770976377{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456310075877{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391387228{margin-bottom: 0px !important;}'),
(1813, 565, 'service_cost', '$58'),
(1814, 566, '_wpb_shortcodes_custom_css', '.vc_custom_1459506868770{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555512780294{margin-bottom: 45px !important;}.vc_custom_1456124656136{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456313586228{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456313597694{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456313605148{margin-bottom: 23px !important;}.vc_custom_1456313560733{margin-bottom: 23px !important;}.vc_custom_1456124690704{margin-bottom: 20px !important;}.vc_custom_1456313571205{margin-bottom: 20px !important;}.vc_custom_1545391375041{margin-bottom: 0px !important;}'),
(1815, 566, '_wpb_shortcodes_custom_css', '.vc_custom_1459506868770{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555512780294{margin-bottom: 45px !important;}.vc_custom_1456124656136{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456313586228{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456313597694{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456313605148{margin-bottom: 23px !important;}.vc_custom_1456313560733{margin-bottom: 23px !important;}.vc_custom_1456124690704{margin-bottom: 20px !important;}.vc_custom_1456313571205{margin-bottom: 20px !important;}.vc_custom_1545391375041{margin-bottom: 0px !important;}'),
(1816, 566, '_wpb_shortcodes_custom_css', '.vc_custom_1459506868770{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555512780294{margin-bottom: 45px !important;}.vc_custom_1456124656136{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456313586228{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456313597694{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456313605148{margin-bottom: 23px !important;}.vc_custom_1456313560733{margin-bottom: 23px !important;}.vc_custom_1456124690704{margin-bottom: 20px !important;}.vc_custom_1456313571205{margin-bottom: 20px !important;}.vc_custom_1545391375041{margin-bottom: 0px !important;}'),
(1817, 566, '_wpb_shortcodes_custom_css', '.vc_custom_1459506868770{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555512780294{margin-bottom: 45px !important;}.vc_custom_1456124656136{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456313586228{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456313597694{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456313605148{margin-bottom: 23px !important;}.vc_custom_1456313560733{margin-bottom: 23px !important;}.vc_custom_1456124690704{margin-bottom: 20px !important;}.vc_custom_1456313571205{margin-bottom: 20px !important;}.vc_custom_1545391375041{margin-bottom: 0px !important;}'),
(1818, 566, 'slide_template', 'default'),
(1819, 566, '_wpb_vc_js_status', 'true'),
(1820, 566, '_dp_original', '565'),
(1821, 566, '_thumbnail_id', '5588'),
(1822, 566, 'title_box_bg_repeat', 'repeat'),
(1823, 566, '_wpb_shortcodes_custom_css', '.vc_custom_1459506868770{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555512780294{margin-bottom: 45px !important;}.vc_custom_1456124656136{margin-bottom: 25px !important;}.vc_custom_1456123332539{margin-bottom: 57px !important;}.vc_custom_1452765376433{margin-bottom: 50px !important;}.vc_custom_1456313586228{margin-bottom: 31px !important;}.vc_custom_1452765829166{margin-bottom: 57px !important;}.vc_custom_1456313597694{margin-bottom: 27px !important;}.vc_custom_1453102995785{margin-bottom: 14px !important;}.vc_custom_1456313605148{margin-bottom: 23px !important;}.vc_custom_1456313560733{margin-bottom: 23px !important;}.vc_custom_1456124690704{margin-bottom: 20px !important;}.vc_custom_1456313571205{margin-bottom: 20px !important;}.vc_custom_1545391375041{margin-bottom: 0px !important;}'),
(1824, 566, 'service_cost', '$80'),
(1825, 566, 'enable_transparent', 'on'),
(1826, 567, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1549466446722{margin-bottom: 30px !important;}.vc_custom_1549466521221{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312189778{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312179889{margin-bottom: 34px !important;}.vc_custom_1456312171801{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1549466394541{margin-bottom: 40px !important;}'),
(1827, 567, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1549466446722{margin-bottom: 30px !important;}.vc_custom_1549466521221{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312189778{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312179889{margin-bottom: 34px !important;}.vc_custom_1456312171801{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1549466394541{margin-bottom: 40px !important;}'),
(1828, 567, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1549466446722{margin-bottom: 30px !important;}.vc_custom_1549466521221{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312189778{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312179889{margin-bottom: 34px !important;}.vc_custom_1456312171801{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1549466394541{margin-bottom: 40px !important;}'),
(1829, 567, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1549466446722{margin-bottom: 30px !important;}.vc_custom_1549466521221{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312189778{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312179889{margin-bottom: 34px !important;}.vc_custom_1456312171801{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1549466394541{margin-bottom: 40px !important;}'),
(1830, 567, 'slide_template', 'default'),
(1831, 567, '_wpb_vc_js_status', 'true'),
(1832, 567, '_dp_original', '566'),
(1833, 567, '_thumbnail_id', '5588'),
(1834, 567, 'title_box_bg_repeat', 'repeat'),
(1835, 567, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1549466446722{margin-bottom: 30px !important;}.vc_custom_1549466521221{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312189778{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312179889{margin-bottom: 34px !important;}.vc_custom_1456312171801{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1549466394541{margin-bottom: 40px !important;}'),
(1836, 567, 'service_label', 'New'),
(1837, 567, 'service_cost', '$35'),
(1838, 567, 'separator_footer_copyright_border_t', 'on'),
(1839, 567, 'enable_transparent', 'on'),
(1840, 568, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1453464607012{margin-bottom: 30px !important;}.vc_custom_1452839683405{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312091330{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312081882{margin-bottom: 34px !important;}.vc_custom_1456312072059{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1456312052114{margin-bottom: 40px !important;}'),
(1841, 568, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1453464607012{margin-bottom: 30px !important;}.vc_custom_1452839683405{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312091330{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312081882{margin-bottom: 34px !important;}.vc_custom_1456312072059{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1456312052114{margin-bottom: 40px !important;}'),
(1842, 568, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1453464607012{margin-bottom: 30px !important;}.vc_custom_1452839683405{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312091330{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312081882{margin-bottom: 34px !important;}.vc_custom_1456312072059{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1456312052114{margin-bottom: 40px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1843, 568, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1453464607012{margin-bottom: 30px !important;}.vc_custom_1452839683405{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312091330{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312081882{margin-bottom: 34px !important;}.vc_custom_1456312072059{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1456312052114{margin-bottom: 40px !important;}'),
(1844, 568, 'slide_template', 'default'),
(1845, 568, '_wpb_vc_js_status', 'true'),
(1846, 568, '_dp_original', '567'),
(1847, 568, '_thumbnail_id', '5588'),
(1848, 568, 'title_box_bg_repeat', 'no-repeat'),
(1849, 568, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1453464607012{margin-bottom: 30px !important;}.vc_custom_1452839683405{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1456312091330{margin-bottom: 40px !important;}.vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}.vc_custom_1456312081882{margin-bottom: 34px !important;}.vc_custom_1456312072059{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1456312052114{margin-bottom: 40px !important;}'),
(1850, 568, 'enable_transparent', 'on'),
(1851, 568, 'title_box_title_color', '#ffffff'),
(1852, 568, 'title_box_title_line_color', '#ffffff'),
(1853, 568, 'disable_title', 'on'),
(1854, 568, 'service_cost', '$57'),
(1855, 568, 'separator_footer_copyright_border_t', 'on'),
(1856, 569, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1534413991814{margin-bottom: 30px !important;}.vc_custom_1540895047975{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1540895040107{margin-bottom: 40px !important;}.vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1456311730027{margin-bottom: 34px !important;}.vc_custom_1456311739835{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1540895140945{margin-bottom: 40px !important;}'),
(1857, 569, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1534413991814{margin-bottom: 30px !important;}.vc_custom_1540895047975{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1540895040107{margin-bottom: 40px !important;}.vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1456311730027{margin-bottom: 34px !important;}.vc_custom_1456311739835{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1540895140945{margin-bottom: 40px !important;}'),
(1858, 569, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1534413991814{margin-bottom: 30px !important;}.vc_custom_1540895047975{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1540895040107{margin-bottom: 40px !important;}.vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1456311730027{margin-bottom: 34px !important;}.vc_custom_1456311739835{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1540895140945{margin-bottom: 40px !important;}'),
(1859, 569, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1534413991814{margin-bottom: 30px !important;}.vc_custom_1540895047975{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1540895040107{margin-bottom: 40px !important;}.vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1456311730027{margin-bottom: 34px !important;}.vc_custom_1456311739835{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1540895140945{margin-bottom: 40px !important;}'),
(1860, 569, 'slide_template', 'default'),
(1861, 569, '_wpb_vc_js_status', 'true'),
(1862, 569, '_dp_original', '568'),
(1863, 569, 'enable_transparent', 'on'),
(1864, 569, 'title_box_bg_repeat', 'repeat'),
(1865, 569, 'disable_title', 'on'),
(1866, 569, '_wpb_shortcodes_custom_css', '.vc_custom_1452836633781{margin-bottom: 53px !important;}.vc_custom_1452837797829{margin-bottom: 51px !important;}.vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}.vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453099700139{margin-bottom: 48px !important;}.vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}.vc_custom_1534413991814{margin-bottom: 30px !important;}.vc_custom_1540895047975{margin-bottom: 40px !important;}.vc_custom_1452839824807{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1452839938467{margin-bottom: 27px !important;}.vc_custom_1540895040107{margin-bottom: 40px !important;}.vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}.vc_custom_1456311730027{margin-bottom: 34px !important;}.vc_custom_1456311739835{margin-bottom: 38px !important;}.vc_custom_1453096632149{margin-bottom: 28px !important;}.vc_custom_1540895140945{margin-bottom: 40px !important;}'),
(1867, 569, '_thumbnail_id', '5588'),
(1868, 569, 'service_label', 'Special'),
(1869, 569, 'service_cost', '$115'),
(1870, 569, 'separator_footer_copyright_border_t', 'on'),
(1871, 569, '_wp_old_slug', 'turning-around-a-reactive-pharma-supply-chain'),
(1872, 570, '_wpb_shortcodes_custom_css', '.vc_custom_1459506919385{margin-bottom: 100px !important;}.vc_custom_1533636329507{margin-bottom: -60px !important;}.vc_custom_1456123631985{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456309188979{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391095968{margin-bottom: 0px !important;}'),
(1873, 570, '_wpb_shortcodes_custom_css', '.vc_custom_1459506919385{margin-bottom: 100px !important;}.vc_custom_1533636329507{margin-bottom: -60px !important;}.vc_custom_1456123631985{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456309188979{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391095968{margin-bottom: 0px !important;}'),
(1874, 570, '_wpb_shortcodes_custom_css', '.vc_custom_1459506919385{margin-bottom: 100px !important;}.vc_custom_1533636329507{margin-bottom: -60px !important;}.vc_custom_1456123631985{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456309188979{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391095968{margin-bottom: 0px !important;}'),
(1875, 570, '_wp_old_slug', 'bonds-commodities'),
(1876, 570, '_wpb_shortcodes_custom_css', '.vc_custom_1459506919385{margin-bottom: 100px !important;}.vc_custom_1533636329507{margin-bottom: -60px !important;}.vc_custom_1456123631985{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456309188979{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391095968{margin-bottom: 0px !important;}'),
(1877, 570, 'slide_template', 'default'),
(1878, 570, '_wpb_vc_js_status', 'true'),
(1879, 570, '_dp_original', '569'),
(1880, 570, 'title_box_bg_repeat', 'repeat'),
(1881, 570, '_wpb_shortcodes_custom_css', '.vc_custom_1459506919385{margin-bottom: 100px !important;}.vc_custom_1533636329507{margin-bottom: -60px !important;}.vc_custom_1456123631985{margin-bottom: 0px !important;}.vc_custom_1452770900884{margin-bottom: 20px !important;}.vc_custom_1453717420557{margin-bottom: 15px !important;}.vc_custom_1453717756599{margin-bottom: 10px !important;}.vc_custom_1456309188979{margin-bottom: 15px !important;}.vc_custom_1453109317809{margin-bottom: 13px !important;}.vc_custom_1545391095968{margin-bottom: 0px !important;}'),
(1882, 570, 'title_box_title_color', '#f4f4f4'),
(1883, 570, 'title_box_bg_image', '5109'),
(1884, 570, '_thumbnail_id', '5588'),
(1885, 570, 'service_cost', '$60'),
(1886, 570, '_wp_old_slug', 'increased-sales-productivity-frees-selling-time-and-saves-millions'),
(1887, 571, '_wpb_shortcodes_custom_css', '.vc_custom_1459506798851{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555491615237{margin-bottom: 45px !important;}.vc_custom_1456123311085{margin-bottom: 25px !important;}.vc_custom_1456219422743{margin-bottom: 34px !important;}.vc_custom_1456219515168{margin-bottom: 27px !important;}.vc_custom_1456311075930{margin-bottom: 31px !important;}.vc_custom_1456219636222{margin-bottom: 34px !important;}.vc_custom_1456311057010{margin-bottom: 27px !important;}.vc_custom_1525425810759{margin-bottom: 14px !important;}.vc_custom_1456311065739{margin-bottom: 23px !important;}.vc_custom_1456311087657{margin-bottom: 23px !important;}.vc_custom_1452766167584{margin-bottom: 20px !important;}.vc_custom_1456311094682{margin-bottom: 20px !important;}.vc_custom_1545391072270{margin-bottom: 0px !important;}'),
(1888, 571, '_wpb_shortcodes_custom_css', '.vc_custom_1459506798851{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555491615237{margin-bottom: 45px !important;}.vc_custom_1456123311085{margin-bottom: 25px !important;}.vc_custom_1456219422743{margin-bottom: 34px !important;}.vc_custom_1456219515168{margin-bottom: 27px !important;}.vc_custom_1456311075930{margin-bottom: 31px !important;}.vc_custom_1456219636222{margin-bottom: 34px !important;}.vc_custom_1456311057010{margin-bottom: 27px !important;}.vc_custom_1525425810759{margin-bottom: 14px !important;}.vc_custom_1456311065739{margin-bottom: 23px !important;}.vc_custom_1456311087657{margin-bottom: 23px !important;}.vc_custom_1452766167584{margin-bottom: 20px !important;}.vc_custom_1456311094682{margin-bottom: 20px !important;}.vc_custom_1545391072270{margin-bottom: 0px !important;}'),
(1889, 571, '_wpb_shortcodes_custom_css', '.vc_custom_1459506798851{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555491615237{margin-bottom: 45px !important;}.vc_custom_1456123311085{margin-bottom: 25px !important;}.vc_custom_1456219422743{margin-bottom: 34px !important;}.vc_custom_1456219515168{margin-bottom: 27px !important;}.vc_custom_1456311075930{margin-bottom: 31px !important;}.vc_custom_1456219636222{margin-bottom: 34px !important;}.vc_custom_1456311057010{margin-bottom: 27px !important;}.vc_custom_1525425810759{margin-bottom: 14px !important;}.vc_custom_1456311065739{margin-bottom: 23px !important;}.vc_custom_1456311087657{margin-bottom: 23px !important;}.vc_custom_1452766167584{margin-bottom: 20px !important;}.vc_custom_1456311094682{margin-bottom: 20px !important;}.vc_custom_1545391072270{margin-bottom: 0px !important;}'),
(1890, 571, '_wp_old_slug', 'turnaround-consulting'),
(1891, 571, '_wpb_shortcodes_custom_css', '.vc_custom_1459506798851{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555491615237{margin-bottom: 45px !important;}.vc_custom_1456123311085{margin-bottom: 25px !important;}.vc_custom_1456219422743{margin-bottom: 34px !important;}.vc_custom_1456219515168{margin-bottom: 27px !important;}.vc_custom_1456311075930{margin-bottom: 31px !important;}.vc_custom_1456219636222{margin-bottom: 34px !important;}.vc_custom_1456311057010{margin-bottom: 27px !important;}.vc_custom_1525425810759{margin-bottom: 14px !important;}.vc_custom_1456311065739{margin-bottom: 23px !important;}.vc_custom_1456311087657{margin-bottom: 23px !important;}.vc_custom_1452766167584{margin-bottom: 20px !important;}.vc_custom_1456311094682{margin-bottom: 20px !important;}.vc_custom_1545391072270{margin-bottom: 0px !important;}'),
(1892, 571, 'slide_template', 'default'),
(1893, 571, '_wpb_vc_js_status', 'true'),
(1894, 571, '_dp_original', '570'),
(1895, 571, 'enable_transparent', 'on'),
(1896, 571, 'title_box_bg_repeat', 'repeat'),
(1897, 571, 'disable_title', 'on'),
(1898, 571, '_wpb_shortcodes_custom_css', '.vc_custom_1459506798851{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555491615237{margin-bottom: 45px !important;}.vc_custom_1456123311085{margin-bottom: 25px !important;}.vc_custom_1456219422743{margin-bottom: 34px !important;}.vc_custom_1456219515168{margin-bottom: 27px !important;}.vc_custom_1456311075930{margin-bottom: 31px !important;}.vc_custom_1456219636222{margin-bottom: 34px !important;}.vc_custom_1456311057010{margin-bottom: 27px !important;}.vc_custom_1525425810759{margin-bottom: 14px !important;}.vc_custom_1456311065739{margin-bottom: 23px !important;}.vc_custom_1456311087657{margin-bottom: 23px !important;}.vc_custom_1452766167584{margin-bottom: 20px !important;}.vc_custom_1456311094682{margin-bottom: 20px !important;}.vc_custom_1545391072270{margin-bottom: 0px !important;}'),
(1899, 571, '_thumbnail_id', '5588'),
(1900, 571, 'service_label', 'New'),
(1901, 571, 'service_cost', '$75'),
(1902, 571, '_wp_old_slug', 'constructing-a-best-in-class-global-procurement-organization'),
(1903, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1904, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1905, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1906, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1907, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1908, 1520, 'slide_template', 'default'),
(1909, 1520, 'enable_transparent', 'on'),
(1910, 1520, 'title_box_bg_repeat', 'no-repeat'),
(1911, 1520, 'disable_title', 'on'),
(1912, 1520, 'stm_portfolio_column', 'default'),
(1913, 1520, '_wpb_vc_js_status', 'true'),
(1914, 1520, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1559539841004{margin-bottom: 0px !important;}'),
(1915, 1520, '_thumbnail_id', '5588'),
(1916, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1917, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1918, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1919, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1920, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1921, 1521, 'slide_template', 'default'),
(1922, 1521, 'enable_transparent', 'on'),
(1923, 1521, 'title_box_bg_repeat', 'no-repeat'),
(1924, 1521, 'disable_title', 'on'),
(1925, 1521, 'stm_portfolio_column', 'default'),
(1926, 1521, '_wpb_vc_js_status', 'true'),
(1927, 1521, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718151466{margin-bottom: -60px !important;}.vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1559539884958{margin-bottom: 0px !important;}'),
(1928, 1521, '_thumbnail_id', '5588'),
(1929, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1930, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1931, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1932, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1933, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1934, 1522, 'slide_template', 'default'),
(1935, 1522, 'enable_transparent', 'on'),
(1936, 1522, 'title_box_bg_repeat', 'no-repeat'),
(1937, 1522, 'disable_title', 'on'),
(1938, 1522, 'stm_portfolio_column', 'default'),
(1939, 1522, '_wpb_vc_js_status', 'true'),
(1940, 1522, '_wpb_shortcodes_custom_css', '.vc_custom_1486036970613{margin-bottom: 42px !important;}.vc_custom_1486039795308{margin-bottom: 34px !important;}.vc_custom_1486037845810{margin-bottom: 40px !important;}.vc_custom_1486387511773{margin-bottom: 40px !important;}.vc_custom_1486038348171{margin-bottom: 40px !important;}.vc_custom_1486718015053{margin-bottom: -60px !important;}.vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}.vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}.vc_custom_1486039760844{margin-bottom: 20px !important;}.vc_custom_1486039789281{margin-bottom: 20px !important;}.vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392654198{margin-bottom: 0px !important;}'),
(1941, 1522, '_thumbnail_id', '5588'),
(1942, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1943, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1944, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1945, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1946, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1947, 1523, 'slide_template', 'default'),
(1948, 1523, 'disable_title_box', 'on'),
(1949, 1523, 'enable_transparent', 'on'),
(1950, 1523, 'title_box_bg_repeat', 'no-repeat'),
(1951, 1523, 'disable_title', 'on'),
(1952, 1523, 'stm_portfolio_column', 'wide'),
(1953, 1523, '_wpb_vc_js_status', 'true'),
(1954, 1523, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392797180{margin-bottom: 0px !important;}'),
(1955, 1523, '_thumbnail_id', '5588'),
(1956, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}'),
(1957, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1958, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}'),
(1959, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}'),
(1960, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}'),
(1961, 1524, 'slide_template', 'default'),
(1962, 1524, 'disable_title_box', 'on'),
(1963, 1524, 'enable_transparent', 'on'),
(1964, 1524, 'title_box_bg_repeat', 'no-repeat'),
(1965, 1524, 'disable_title', 'on'),
(1966, 1524, 'stm_portfolio_column', 'long'),
(1967, 1524, '_wpb_vc_js_status', 'true'),
(1968, 1524, '_wpb_shortcodes_custom_css', '.vc_custom_1486107947125{margin-bottom: 30px !important;}.vc_custom_1486107989655{margin-bottom: 30px !important;}.vc_custom_1486117225957{padding-bottom: 47px !important;}.vc_custom_1486108522112{margin-bottom: 40px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1486108467289{margin-bottom: 32px !important;}.vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}.vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1545392641632{margin-bottom: 0px !important;}'),
(1969, 1524, '_thumbnail_id', '5588'),
(1970, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1971, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1972, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1973, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1974, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1975, 1525, 'slide_template', 'default'),
(1976, 1525, 'enable_transparent', 'on'),
(1977, 1525, 'title_box_bg_repeat', 'no-repeat'),
(1978, 1525, 'disable_title', 'on'),
(1979, 1525, 'stm_portfolio_column', 'default'),
(1980, 1525, '_wpb_vc_js_status', 'true'),
(1981, 1525, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559539692677{margin-bottom: 30px !important;}.vc_custom_1559539707765{margin-bottom: 30px !important;}.vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1982, 1525, '_thumbnail_id', '5588'),
(1983, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1984, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1985, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1986, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1987, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1988, 1526, 'slide_template', 'default'),
(1989, 1526, 'enable_transparent', 'on'),
(1990, 1526, 'title_box_bg_repeat', 'no-repeat'),
(1991, 1526, 'disable_title', 'on'),
(1992, 1526, 'stm_portfolio_column', 'default'),
(1993, 1526, '_wpb_vc_js_status', 'true'),
(1994, 1526, '_wpb_shortcodes_custom_css', '.vc_custom_1486031020045{margin-bottom: 30px !important;}.vc_custom_1486031104993{margin-bottom: 54px !important;}.vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}.vc_custom_1559540015819{margin-bottom: 30px !important;}.vc_custom_1559540023635{margin-bottom: 30px !important;}.vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}'),
(1995, 1526, '_thumbnail_id', '5588'),
(1996, 1615, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771945409{margin-bottom: 0px !important;}.vc_custom_1534245857256{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1534307625284{margin-right: 0px !important;margin-left: 0px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;background-color: #1e1c1b !important;}.vc_custom_1453120292205{padding-right: 25px !important;}.vc_custom_1544771932341{margin-bottom: 18px !important;}.vc_custom_1544771936228{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545631785915{margin-bottom: 0px !important;}'),
(1997, 1615, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771945409{margin-bottom: 0px !important;}.vc_custom_1534245857256{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1534307625284{margin-right: 0px !important;margin-left: 0px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;background-color: #1e1c1b !important;}.vc_custom_1453120292205{padding-right: 25px !important;}.vc_custom_1544771932341{margin-bottom: 18px !important;}.vc_custom_1544771936228{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545631785915{margin-bottom: 0px !important;}'),
(1998, 1615, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771945409{margin-bottom: 0px !important;}.vc_custom_1534245857256{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1534307625284{margin-right: 0px !important;margin-left: 0px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;background-color: #1e1c1b !important;}.vc_custom_1453120292205{padding-right: 25px !important;}.vc_custom_1544771932341{margin-bottom: 18px !important;}.vc_custom_1544771936228{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545631785915{margin-bottom: 0px !important;}'),
(1999, 1615, '_wp_old_slug', 'chivelet-honsou'),
(2000, 1615, 'slide_template', 'default'),
(2001, 1615, 'title_box_bg_repeat', 'no-repeat'),
(2002, 1615, '_wpb_vc_js_status', 'true'),
(2003, 1615, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771945409{margin-bottom: 0px !important;}.vc_custom_1534245857256{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1534307625284{margin-right: 0px !important;margin-left: 0px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;background-color: #1e1c1b !important;}.vc_custom_1453120292205{padding-right: 25px !important;}.vc_custom_1544771932341{margin-bottom: 18px !important;}.vc_custom_1544771936228{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545631785915{margin-bottom: 0px !important;}'),
(2004, 1615, 'department', 'Financial Advisor'),
(2005, 1615, '_thumbnail_id', '5588'),
(2006, 1615, 'enable_transparent', 'on'),
(2007, 1615, 'disable_title', 'on'),
(2008, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2009, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2010, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2011, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2012, 311, 'slide_template', 'default'),
(2013, 311, '_wpb_vc_js_status', 'true'),
(2014, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2015, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2016, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2017, 311, 'slide_template', 'default'),
(2018, 311, '_wpb_vc_js_status', 'true'),
(2019, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381175489{margin-bottom: 9px !important;}.vc_custom_1559381183429{margin-bottom: 17px !important;}'),
(2020, 330, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2021, 330, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2022, 330, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2023, 330, '_thumbnail_id', '5588'),
(2024, 330, 'slide_template', 'default'),
(2025, 330, 'testimonial_company', 'Diamond Duck'),
(2026, 330, '_dp_original', '322'),
(2027, 330, 'testimonial_position', 'President & Chief Executive Officer'),
(2028, 331, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2029, 331, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2030, 331, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(2031, 331, '_thumbnail_id', '5588'),
(2032, 331, 'slide_template', 'default'),
(2033, 331, 'testimonial_company', 'Broad Burk'),
(2034, 331, '_dp_original', '322'),
(2035, 331, 'testimonial_position', 'Global Leader and Client Team Chair'),
(2036, 332, '_thumbnail_id', '5588'),
(2037, 332, 'slide_template', 'default'),
(2038, 332, 'testimonial_company', 'Ericksson'),
(2039, 332, '_dp_original', '322'),
(2040, 332, 'testimonial_position', 'Managing Director'),
(2041, 332, '_wpb_vc_js_status', 'false'),
(2042, 333, '_thumbnail_id', '5588'),
(2043, 333, 'slide_template', 'default'),
(2044, 333, 'testimonial_company', 'Grandier Co.'),
(2045, 333, '_dp_original', '322'),
(2046, 333, 'testimonial_position', 'Partner & Managing Director'),
(2047, 333, '_wpb_vc_js_status', 'false'),
(2048, 334, '_thumbnail_id', '5588'),
(2049, 334, 'slide_template', 'default'),
(2050, 334, 'testimonial_company', 'Harmony Corporation'),
(2051, 334, '_dp_original', '322'),
(2052, 334, 'testimonial_position', 'Chairman'),
(2053, 334, 'testimonial_bg_img', '5132'),
(2054, 334, '_wp_old_date', '2016-01-06'),
(2055, 334, '_wp_old_date', '2018-01-06'),
(2056, 334, '_wp_old_date', '2018-12-06'),
(2057, 334, '_wpb_vc_js_status', 'false'),
(2058, 335, '_thumbnail_id', '5588'),
(2059, 335, 'slide_template', 'default'),
(2060, 335, '_dp_original', '322'),
(2061, 335, 'testimonial_position', 'Chairman'),
(2062, 335, '_icl_lang_duplicate_of', '335'),
(2063, 335, 'slide_template', 'default'),
(2064, 335, '_dp_original', '322'),
(2065, 335, 'testimonial_position', 'Chairman'),
(2066, 335, '_icl_lang_duplicate_of', '335'),
(2067, 335, 'slide_template', 'default'),
(2068, 335, '_dp_original', '322'),
(2069, 335, 'testimonial_position', 'Chairman'),
(2070, 335, 'testimonial_company', 'Bluewater Corp'),
(2071, 335, '_wpb_vc_js_status', 'false'),
(2072, 335, 'testimonial_bg_img', '5140'),
(2073, 335, '_wp_old_date', '2018-01-06'),
(2074, 336, '_thumbnail_id', '5588'),
(2075, 336, 'slide_template', 'default'),
(2076, 336, 'testimonial_company', 'Kreutz Airlines'),
(2077, 336, '_dp_original', '322'),
(2078, 336, 'testimonial_position', 'Chairman'),
(2079, 336, '_icl_lang_duplicate_of', '336'),
(2080, 336, 'slide_template', 'default'),
(2081, 336, 'testimonial_company', 'Kreutz Airlines'),
(2082, 336, '_dp_original', '322'),
(2083, 336, 'testimonial_position', 'Chairman'),
(2084, 336, '_icl_lang_duplicate_of', '336'),
(2085, 336, 'slide_template', 'default'),
(2086, 336, 'testimonial_company', 'Kreutz Airlines'),
(2087, 336, '_dp_original', '322'),
(2088, 336, 'testimonial_position', 'Chairman'),
(2089, 336, '_wpb_vc_js_status', 'false'),
(2090, 337, '_wp_old_date', '2016-01-06'),
(2091, 337, 'slide_template', 'default'),
(2092, 337, 'testimonial_company', 'Arcade Systems'),
(2093, 337, '_dp_original', '322'),
(2094, 337, 'testimonial_position', 'Founder & CEO'),
(2095, 337, '_thumbnail_id', '5588'),
(2096, 337, '_icl_lang_duplicate_of', '337'),
(2097, 337, 'slide_template', 'default'),
(2098, 337, 'testimonial_company', 'Arcade Systems'),
(2099, 337, '_dp_original', '322'),
(2100, 337, 'testimonial_position', 'Founder & CEO'),
(2101, 337, '_icl_lang_duplicate_of', '337'),
(2102, 337, 'testimonial_bg_img', '5129'),
(2103, 337, '_wp_old_date', '2018-01-06'),
(2104, 337, 'slide_template', 'default'),
(2105, 337, 'testimonial_company', 'Arcade Systems'),
(2106, 337, '_dp_original', '322'),
(2107, 337, 'testimonial_position', 'Founder & CEO'),
(2108, 337, '_wpb_vc_js_status', 'false'),
(2109, 460, '_wpb_shortcodes_custom_css', '.vc_custom_1459506715941{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771716333{margin-bottom: 0px !important;}.vc_custom_1555505511182{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399387762{padding-right: 25px !important;}.vc_custom_1544771701244{margin-bottom: 18px !important;}.vc_custom_1544771708811{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640622485{margin-bottom: 0px !important;}'),
(2110, 460, '_wpb_shortcodes_custom_css', '.vc_custom_1459506715941{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771716333{margin-bottom: 0px !important;}.vc_custom_1555505511182{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399387762{padding-right: 25px !important;}.vc_custom_1544771701244{margin-bottom: 18px !important;}.vc_custom_1544771708811{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640622485{margin-bottom: 0px !important;}'),
(2111, 460, '_wpb_shortcodes_custom_css', '.vc_custom_1459506715941{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771716333{margin-bottom: 0px !important;}.vc_custom_1555505511182{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399387762{padding-right: 25px !important;}.vc_custom_1544771701244{margin-bottom: 18px !important;}.vc_custom_1544771708811{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640622485{margin-bottom: 0px !important;}'),
(2112, 460, '_thumbnail_id', '5588'),
(2113, 460, '_wpb_shortcodes_custom_css', '.vc_custom_1459506715941{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771716333{margin-bottom: 0px !important;}.vc_custom_1555505511182{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399387762{padding-right: 25px !important;}.vc_custom_1544771701244{margin-bottom: 18px !important;}.vc_custom_1544771708811{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640622485{margin-bottom: 0px !important;}'),
(2114, 460, 'slide_template', 'default'),
(2115, 460, 'department', 'Chief Finance Officer'),
(2116, 460, 'title_box_bg_repeat', 'repeat'),
(2117, 460, 'phone', '+1 628 123 4000'),
(2118, 460, 'skype', '#'),
(2119, 460, 'email', 'brandon@cop.com'),
(2120, 460, 'facebook', '#'),
(2121, 460, 'twitter', '#'),
(2122, 460, 'google_plus', '#'),
(2123, 460, 'linkedin', '#'),
(2124, 460, '_wpb_vc_js_status', 'true'),
(2125, 460, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(2126, 460, '_wpb_shortcodes_custom_css', '.vc_custom_1459506715941{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1544771716333{margin-bottom: 0px !important;}.vc_custom_1555505511182{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1534399387762{padding-right: 25px !important;}.vc_custom_1544771701244{margin-bottom: 18px !important;}.vc_custom_1544771708811{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545640622485{margin-bottom: 0px !important;}'),
(2127, 460, 'enable_transparent', 'on'),
(2128, 460, 'disable_title', 'on'),
(2129, 461, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1549464988413{margin-bottom: 0px !important;}.vc_custom_1555504395665{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1555484465334{padding-right: 25px !important;}.vc_custom_1549464954106{margin-bottom: 18px !important;}.vc_custom_1549464960053{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545390957100{margin-bottom: 0px !important;}'),
(2130, 461, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1549464988413{margin-bottom: 0px !important;}.vc_custom_1555504395665{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1555484465334{padding-right: 25px !important;}.vc_custom_1549464954106{margin-bottom: 18px !important;}.vc_custom_1549464960053{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545390957100{margin-bottom: 0px !important;}'),
(2131, 461, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1549464988413{margin-bottom: 0px !important;}.vc_custom_1555504395665{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1555484465334{padding-right: 25px !important;}.vc_custom_1549464954106{margin-bottom: 18px !important;}.vc_custom_1549464960053{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545390957100{margin-bottom: 0px !important;}'),
(2132, 461, '_thumbnail_id', '5588'),
(2133, 461, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1549464988413{margin-bottom: 0px !important;}.vc_custom_1555504395665{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1555484465334{padding-right: 25px !important;}.vc_custom_1549464954106{margin-bottom: 18px !important;}.vc_custom_1549464960053{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545390957100{margin-bottom: 0px !important;}'),
(2134, 461, 'slide_template', 'default'),
(2135, 461, 'department', 'Founder & CEO'),
(2136, 461, 'enable_transparent', 'on'),
(2137, 461, 'title_box_bg_repeat', 'repeat'),
(2138, 461, 'disable_title', 'on'),
(2139, 461, '_wpb_vc_js_status', 'true'),
(2140, 461, '_wpb_shortcodes_custom_css', '.vc_custom_1459506735567{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453120532096{margin-bottom: 37px !important;}.vc_custom_1453182502119{margin-bottom: 25px !important;}.vc_custom_1549464988413{margin-bottom: 0px !important;}.vc_custom_1555504395665{margin-bottom: 27px !important;}.vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}.vc_custom_1555484465334{padding-right: 25px !important;}.vc_custom_1549464954106{margin-bottom: 18px !important;}.vc_custom_1549464960053{margin-bottom: 18px !important;}.vc_custom_1453194844614{padding-top: 27px !important;}.vc_custom_1545390957100{margin-bottom: 0px !important;}'),
(2141, 461, 'phone', '+1 628 123 4000'),
(2142, 461, 'skype', '#'),
(2143, 461, 'email', 'brandon@cop.com'),
(2144, 461, 'facebook', '#'),
(2145, 461, 'twitter', '#'),
(2146, 461, 'google_plus', '#'),
(2147, 461, 'linkedin', '#'),
(2148, 461, 'address', '131 Bain Street<br/> New York, Pennsylvania 01234, United States'),
(2149, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2150, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2151, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2152, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2153, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2154, 527, 'slide_template', 'default'),
(2155, 527, '_wpb_vc_js_status', 'true'),
(2156, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2157, 527, '_dp_original', '311'),
(2158, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2159, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2160, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2161, 527, 'slide_template', 'default'),
(2162, 527, '_wpb_vc_js_status', 'true'),
(2163, 527, '_wpb_shortcodes_custom_css', '.vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}.vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381219201{margin-bottom: 9px !important;}.vc_custom_1559381225781{margin-bottom: 17px !important;}'),
(2164, 527, '_dp_original', '311'),
(2165, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2166, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2167, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2168, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2169, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2170, 573, 'slide_template', 'default'),
(2171, 573, '_wpb_vc_js_status', 'true'),
(2172, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2173, 573, '_dp_original', '311'),
(2174, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2175, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2176, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2177, 573, 'slide_template', 'default'),
(2178, 573, '_wpb_vc_js_status', 'true'),
(2179, 573, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390243319{margin-bottom: 9px !important;}.vc_custom_1545390233365{margin-bottom: 17px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}'),
(2180, 573, '_dp_original', '311'),
(2181, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2182, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2183, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2184, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2185, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2186, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2187, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2188, 577, 'slide_template', 'default'),
(2189, 577, '_wpb_vc_js_status', 'true'),
(2190, 577, '_dp_original', '573'),
(2191, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2192, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2193, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2194, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2195, 577, '_wpb_shortcodes_custom_css', '.vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381258018{margin-bottom: 9px !important;}.vc_custom_1559381263789{margin-bottom: 17px !important;}'),
(2196, 577, 'slide_template', 'default'),
(2197, 577, '_wpb_vc_js_status', 'true'),
(2198, 577, '_dp_original', '573'),
(2199, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1459507322995{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310531973{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392065597{margin-bottom: 0px !important;}'),
(2200, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1459507322995{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310531973{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392065597{margin-bottom: 0px !important;}'),
(2201, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1459507322995{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310531973{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392065597{margin-bottom: 0px !important;}'),
(2202, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1459507322995{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310531973{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392065597{margin-bottom: 0px !important;}'),
(2203, 607, 'slide_template', 'default'),
(2204, 607, '_dp_original', '606'),
(2205, 607, '_thumbnail_id', '5588'),
(2206, 607, 'title_box_bg_repeat', 'repeat'),
(2207, 607, '_wpb_vc_js_status', 'true'),
(2208, 607, 'enable_transparent', 'on'),
(2209, 607, 'disable_title', 'on'),
(2210, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1459507322995{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310531973{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392065597{margin-bottom: 0px !important;}'),
(2211, 609, '_wpb_shortcodes_custom_css', '.vc_custom_1459507052059{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310480533{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392072284{margin-bottom: 0px !important;}'),
(2212, 609, '_wpb_shortcodes_custom_css', '.vc_custom_1459507052059{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310480533{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392072284{margin-bottom: 0px !important;}'),
(2213, 609, '_wpb_shortcodes_custom_css', '.vc_custom_1459507052059{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310480533{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392072284{margin-bottom: 0px !important;}'),
(2214, 609, '_wpb_shortcodes_custom_css', '.vc_custom_1459507052059{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310480533{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392072284{margin-bottom: 0px !important;}'),
(2215, 609, 'slide_template', 'default'),
(2216, 609, 'title_box_bg_repeat', 'repeat'),
(2217, 609, '_wpb_vc_js_status', 'true'),
(2218, 609, '_wpb_shortcodes_custom_css', '.vc_custom_1459507052059{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310480533{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545392072284{margin-bottom: 0px !important;}'),
(2219, 609, 'enable_transparent', 'on'),
(2220, 609, 'disable_title', 'on'),
(2221, 609, '_thumbnail_id', '5588'),
(2222, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2223, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2224, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2225, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2226, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2227, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2228, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2229, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2230, 619, 'slide_template', 'default'),
(2231, 619, '_wpb_vc_js_status', 'true'),
(2232, 619, '_dp_original', '577'),
(2233, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2234, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2235, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2236, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2237, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2238, 619, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452752737760{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1559381283915{margin-bottom: 9px !important;}.vc_custom_1559381291431{margin-bottom: 17px !important;}'),
(2239, 619, 'slide_template', 'default'),
(2240, 619, '_wpb_vc_js_status', 'true'),
(2241, 619, '_dp_original', '577'),
(2242, 1469, '_wpb_shortcodes_custom_css', '.vc_custom_1483625644357{margin-bottom: 40px !important;}.vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390142126{margin-bottom: 9px !important;}.vc_custom_1545390153547{margin-bottom: 17px !important;}.vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}'),
(2243, 1469, '_wpb_shortcodes_custom_css', '.vc_custom_1483625644357{margin-bottom: 40px !important;}.vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390142126{margin-bottom: 9px !important;}.vc_custom_1545390153547{margin-bottom: 17px !important;}.vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}'),
(2244, 1469, '_wpb_shortcodes_custom_css', '.vc_custom_1483625644357{margin-bottom: 40px !important;}.vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390142126{margin-bottom: 9px !important;}.vc_custom_1545390153547{margin-bottom: 17px !important;}.vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}'),
(2245, 1469, '_wpb_shortcodes_custom_css', '.vc_custom_1483625644357{margin-bottom: 40px !important;}.vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390142126{margin-bottom: 9px !important;}.vc_custom_1545390153547{margin-bottom: 17px !important;}.vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}'),
(2246, 1469, 'slide_template', 'default'),
(2247, 1469, '_wpb_vc_js_status', 'true'),
(2248, 1469, '_wpb_shortcodes_custom_css', '.vc_custom_1483625644357{margin-bottom: 40px !important;}.vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390142126{margin-bottom: 9px !important;}.vc_custom_1545390153547{margin-bottom: 17px !important;}.vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}'),
(2249, 1470, '_wpb_shortcodes_custom_css', '.vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1483700499841{margin-bottom: 40px !important;}.vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390030180{margin-bottom: 9px !important;}.vc_custom_1545390047963{margin-bottom: 17px !important;}.vc_custom_1483700340016{margin-bottom: 40px !important;}.vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}'),
(2250, 1470, '_wpb_shortcodes_custom_css', '.vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1483700499841{margin-bottom: 40px !important;}.vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390030180{margin-bottom: 9px !important;}.vc_custom_1545390047963{margin-bottom: 17px !important;}.vc_custom_1483700340016{margin-bottom: 40px !important;}.vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}'),
(2251, 1470, '_wpb_shortcodes_custom_css', '.vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1483700499841{margin-bottom: 40px !important;}.vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390030180{margin-bottom: 9px !important;}.vc_custom_1545390047963{margin-bottom: 17px !important;}.vc_custom_1483700340016{margin-bottom: 40px !important;}.vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}'),
(2252, 1470, '_wpb_shortcodes_custom_css', '.vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1483700499841{margin-bottom: 40px !important;}.vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390030180{margin-bottom: 9px !important;}.vc_custom_1545390047963{margin-bottom: 17px !important;}.vc_custom_1483700340016{margin-bottom: 40px !important;}.vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}'),
(2253, 1470, 'slide_template', 'default'),
(2254, 1470, '_wpb_vc_js_status', 'true'),
(2255, 1470, '_wpb_shortcodes_custom_css', '.vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}.vc_custom_1483700499841{margin-bottom: 40px !important;}.vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545390030180{margin-bottom: 9px !important;}.vc_custom_1545390047963{margin-bottom: 17px !important;}.vc_custom_1483700340016{margin-bottom: 40px !important;}.vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}.vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}'),
(2256, 1471, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545389977001{margin-bottom: 9px !important;}.vc_custom_1545389989697{margin-bottom: 17px !important;}'),
(2257, 1471, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545389977001{margin-bottom: 9px !important;}.vc_custom_1545389989697{margin-bottom: 17px !important;}'),
(2258, 1471, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545389977001{margin-bottom: 9px !important;}.vc_custom_1545389989697{margin-bottom: 17px !important;}'),
(2259, 1471, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545389977001{margin-bottom: 9px !important;}.vc_custom_1545389989697{margin-bottom: 17px !important;}'),
(2260, 1471, 'slide_template', 'default'),
(2261, 1471, '_wpb_vc_js_status', 'true'),
(2262, 1471, '_wpb_shortcodes_custom_css', '.vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}.vc_custom_1451998133493{margin-bottom: 30px !important;}.vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}.vc_custom_1545389977001{margin-bottom: 9px !important;}.vc_custom_1545389989697{margin-bottom: 17px !important;}'),
(2263, 508, '_form', '<div class=\"request_callback\">\n    <div class=\"row\" style=\"margin: 0 -13px;\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [tel* phone placeholder \"Phone *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2264, 508, '_mail', 'a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:19:\"info@qualstream.net\";s:9:\"recipient\";s:19:\"info@qualstream.net\";s:4:\"body\";s:76:\"Your name: [text-name]\nYour email: [email]\nphone: [phone]\nmessage: [message]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2265, 508, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2266, 508, '_messages', 'a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2267, 508, '_additional_settings', ''),
(2268, 508, '_locale', 'en_US'),
(2269, 508, '_form', '<div class=\"request_callback\">\n    <div class=\"row\" style=\"margin: 0 -13px;\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [tel* phone placeholder \"Phone *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2270, 508, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2271, 508, '_messages', 'a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2272, 508, '_additional_settings', ''),
(2273, 508, '_locale', 'en_US'),
(2274, 599, '_form', '<div class=\"member_feedback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name2 placeholder akismet:author \"Last Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel phone placeholder \"Phone Number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* city placeholder \"City\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select state first_as_label \"Select State (USA only)\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select country first_as_label \"Country\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_left\"><i class=\"fa fa-chevron-right\"></i> Submit</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2275, 599, '_mail', ''),
(2276, 599, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2277, 599, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2278, 599, '_additional_settings', ''),
(2279, 599, '_locale', 'en_US'),
(2280, 599, '_form', '<div class=\"member_feedback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name2 placeholder akismet:author \"Last Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel phone placeholder \"Phone Number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* city placeholder \"City\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select state first_as_label \"Select State (USA only)\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select country first_as_label \"Country\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_left\"><i class=\"fa fa-chevron-right\"></i> Submit</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2281, 599, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2282, 599, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2283, 599, '_additional_settings', ''),
(2284, 599, '_locale', 'en_US'),
(2285, 600, '_wpb_shortcodes_custom_css', '.vc_custom_1574326334627{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(2286, 600, '_wpb_shortcodes_custom_css', '.vc_custom_1574326334627{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(2287, 600, '_wpb_shortcodes_custom_css', '.vc_custom_1574326334627{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(2288, 600, 'slide_template', 'default'),
(2289, 600, '_thumbnail_id', '6474'),
(2290, 600, 'title_box_bg_repeat', 'repeat'),
(2291, 600, '_wpb_vc_js_status', 'true'),
(2292, 600, 'enable_transparent', 'on'),
(2293, 600, 'disable_title', 'on'),
(2294, 600, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1574326334627{margin-bottom: -60px !important;background-color: #f2f4fa !important;}'),
(2295, 600, '_wp_old_date', '2016-01-19'),
(2296, 606, '_wpb_shortcodes_custom_css', '.vc_custom_1574327639280{background-color: #f2f4fa !important;}.vc_custom_1574331762555{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1576564920349{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(2297, 606, '_wpb_shortcodes_custom_css', '.vc_custom_1574327639280{background-color: #f2f4fa !important;}.vc_custom_1574331762555{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1576564920349{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(2298, 606, '_wpb_shortcodes_custom_css', '.vc_custom_1574327639280{background-color: #f2f4fa !important;}.vc_custom_1574331762555{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1576564920349{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(2299, 606, '_wp_old_date', '2016-01-19'),
(2300, 606, 'slide_template', 'default'),
(2301, 606, '_dp_original', '600'),
(2302, 606, '_thumbnail_id', '6474'),
(2303, 606, 'title_box_bg_repeat', 'repeat'),
(2304, 606, '_wpb_vc_js_status', 'true'),
(2305, 606, 'enable_transparent', 'on'),
(2306, 606, 'disable_title', 'on'),
(2307, 606, '_wpb_shortcodes_custom_css', '\n                    .vc_custom_1574327639280{background-color: #f2f4fa !important;}.vc_custom_1574331762555{padding-right: 30px !important;padding-left: 30px !important;}.vc_custom_1576564920349{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(2308, 608, 'slide_template', 'default'),
(2309, 608, '_thumbnail_id', '6474'),
(2310, 608, 'title_box_bg_repeat', 'repeat'),
(2311, 608, '_wpb_vc_js_status', 'true'),
(2312, 608, 'enable_transparent', 'on'),
(2313, 608, 'disable_title', 'on'),
(2314, 608, '_wp_old_date', '2016-01-19'),
(2315, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516713197{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391973470{margin-bottom: 0px !important;}'),
(2316, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516713197{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391973470{margin-bottom: 0px !important;}'),
(2317, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516713197{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391973470{margin-bottom: 0px !important;}'),
(2318, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516713197{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391973470{margin-bottom: 0px !important;}'),
(2319, 610, 'slide_template', 'default'),
(2320, 610, '_wp_old_slug', 'constructing-a-best-in-class-global-procurement-organization'),
(2321, 610, '_wpb_vc_js_status', 'true'),
(2322, 610, 'enable_transparent', 'on'),
(2323, 610, 'title_box_bg_repeat', 'repeat'),
(2324, 610, 'disable_title', 'on'),
(2325, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516713197{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391973470{margin-bottom: 0px !important;}'),
(2326, 610, '_thumbnail_id', '5588'),
(2327, 722, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391962765{margin-bottom: 0px !important;}'),
(2328, 722, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391962765{margin-bottom: 0px !important;}'),
(2329, 722, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391962765{margin-bottom: 0px !important;}'),
(2330, 722, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391962765{margin-bottom: 0px !important;}'),
(2331, 722, 'slide_template', 'default'),
(2332, 722, 'title_box_bg_repeat', 'repeat'),
(2333, 722, '_wpb_vc_js_status', 'true'),
(2334, 722, '_dp_original', '600'),
(2335, 722, '_thumbnail_id', '5588'),
(2336, 722, 'enable_transparent', 'on'),
(2337, 722, 'disable_title', 'on'),
(2338, 722, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391962765{margin-bottom: 0px !important;}'),
(2339, 723, '_wpb_shortcodes_custom_css', '.vc_custom_1459507421846{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516778435{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545392093865{margin-bottom: 0px !important;}'),
(2340, 723, '_wpb_shortcodes_custom_css', '.vc_custom_1459507421846{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516778435{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545392093865{margin-bottom: 0px !important;}'),
(2341, 723, '_wpb_shortcodes_custom_css', '.vc_custom_1459507421846{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516778435{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545392093865{margin-bottom: 0px !important;}'),
(2342, 723, '_wpb_shortcodes_custom_css', '.vc_custom_1459507421846{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516778435{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545392093865{margin-bottom: 0px !important;}'),
(2343, 723, 'slide_template', 'default'),
(2344, 723, 'title_box_bg_repeat', 'repeat'),
(2345, 723, '_wpb_vc_js_status', 'true'),
(2346, 723, '_dp_original', '600'),
(2347, 723, '_thumbnail_id', '5588'),
(2348, 723, 'enable_transparent', 'on'),
(2349, 723, 'disable_title', 'on'),
(2350, 723, '_wpb_shortcodes_custom_css', '.vc_custom_1459507421846{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516778435{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545392093865{margin-bottom: 0px !important;}'),
(2351, 725, '_wpb_shortcodes_custom_css', '.vc_custom_1459507444937{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456306022186{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391910288{margin-bottom: 0px !important;}'),
(2352, 725, '_wpb_shortcodes_custom_css', '.vc_custom_1459507444937{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456306022186{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391910288{margin-bottom: 0px !important;}'),
(2353, 725, '_wpb_shortcodes_custom_css', '.vc_custom_1459507444937{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456306022186{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391910288{margin-bottom: 0px !important;}'),
(2354, 725, '_wpb_shortcodes_custom_css', '.vc_custom_1459507444937{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456306022186{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391910288{margin-bottom: 0px !important;}'),
(2355, 725, 'slide_template', 'default'),
(2356, 725, 'title_box_bg_repeat', 'repeat'),
(2357, 725, '_wpb_vc_js_status', 'true'),
(2358, 725, '_dp_original', '600'),
(2359, 725, 'enable_transparent', 'on'),
(2360, 725, 'disable_title', 'on'),
(2361, 725, '_wpb_shortcodes_custom_css', '.vc_custom_1459507444937{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456306022186{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391910288{margin-bottom: 0px !important;}'),
(2362, 725, '_thumbnail_id', '5588'),
(2363, 1272, '_form', '<div class=\"request_callback_5\">\n    <div class=\"my_flex_\">\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n               <span class=\"stm-amsterdam-profile my_pos_abs_fa\"></span> [text* text-name placeholder akismet:author \"Your name\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n                <span class=\"stm-denver-envelope my_pos_abs_fa\"></span> [email* email-752 placeholder \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_mg\">\n                <button type=\"submit\" class=\"button theme_style_2 size-lg\" style=\"color: white; border-radius:0;\" >Send Request</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2364, 1272, '_mail', ''),
(2365, 1272, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2366, 1272, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2367, 1272, '_additional_settings', ''),
(2368, 1272, '_locale', 'en_US'),
(2369, 1272, '_form', '<div class=\"request_callback_5\">\n    <div class=\"my_flex_\">\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n               <span class=\"stm-amsterdam-profile my_pos_abs_fa\"></span> [text* text-name placeholder akismet:author \"Your name\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n                <span class=\"stm-denver-envelope my_pos_abs_fa\"></span> [email* email-752 placeholder \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_mg\">\n                <button type=\"submit\" class=\"button theme_style_2 size-lg\" style=\"color: white; border-radius:0;\" >Send Request</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2370, 1272, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2371, 1272, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2372, 1272, '_additional_settings', ''),
(2373, 1272, '_locale', 'en_US'),
(2374, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2375, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2376, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2377, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2378, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2379, 2902, '_wpb_shortcodes_custom_css', '.vc_custom_1459507084186{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310610603{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391920664{margin-bottom: 0px !important;}'),
(2380, 2902, 'slide_template', 'default'),
(2381, 2902, 'enable_transparent', 'on'),
(2382, 2902, '_wp_old_slug', 'transformation-sparks-financial-leaders-turnaround'),
(2383, 2902, 'disable_title', 'on'),
(2384, 2902, '_dp_original', '600'),
(2385, 2902, 'title_box_bg_repeat', 'repeat'),
(2386, 2902, '_wpb_vc_js_status', 'true'),
(2387, 2902, '_thumbnail_id', '5588'),
(2388, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2389, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2390, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2391, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2392, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2393, 2903, '_wpb_shortcodes_custom_css', '.vc_custom_1459507401741{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1453269716083{margin-bottom: 30px !important;}.vc_custom_1453271494452{margin-bottom: 50px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453271763899{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1453272927441{margin-bottom: 33px !important;}.vc_custom_1453271595991{margin-bottom: 21px !important;}.vc_custom_1456310402407{margin-bottom: 18px !important;}.vc_custom_1453272656287{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1453270747989{padding-right: 45px !important;}.vc_custom_1453271259318{padding-top: 18px !important;}.vc_custom_1545391869201{margin-bottom: 0px !important;}'),
(2394, 2903, 'slide_template', 'default'),
(2395, 2903, 'title_box_bg_repeat', 'repeat'),
(2396, 2903, '_wpb_vc_js_status', 'true'),
(2397, 2903, '_dp_original', '722'),
(2398, 2903, 'enable_transparent', 'on'),
(2399, 2903, 'disable_title', 'on'),
(2400, 2903, '_wp_old_slug', 'developing-a-strategy-and-roadmap'),
(2401, 2903, '_thumbnail_id', '5588'),
(2402, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2403, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2404, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2405, 2904, '_thumbnail_id', '5588'),
(2406, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2407, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2408, 2904, '_wpb_shortcodes_custom_css', '.vc_custom_1459507381132{margin-bottom: 100px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1555516726208{margin-bottom: 44px !important;}.vc_custom_1453269110562{margin-bottom: 53px !important;}.vc_custom_1545391852309{margin-bottom: 0px !important;}'),
(2409, 2904, 'slide_template', 'default'),
(2410, 2904, '_wp_old_slug', 'constructing-a-best-in-class-global-procurement-organization'),
(2411, 2904, '_wpb_vc_js_status', 'true'),
(2412, 2904, 'enable_transparent', 'on'),
(2413, 2904, 'title_box_bg_repeat', 'repeat'),
(2414, 2904, 'disable_title', 'on'),
(2415, 2904, '_dp_original', '610'),
(2416, 2904, '_wp_old_slug', 'constructing-a-best-in-class-global'),
(2417, 5594, '_form', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* text-phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"vc_general vc_btn3 vc_btn3-size-md  vc_btn3-style-flat vc_btn3-color-theme_style_1\" style=\" text-align: center; display: inline-block; color:#fff\">Submit</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2418, 5594, '_mail', ''),
(2419, 5594, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2420, 5594, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2421, 5594, '_additional_settings', ''),
(2422, 5594, '_locale', 'en_US'),
(2423, 5594, '_form', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* text-phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"vc_general vc_btn3 vc_btn3-size-md  vc_btn3-style-flat vc_btn3-color-theme_style_1\" style=\" text-align: center; display: inline-block; color:#fff\">Submit</button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2424, 5594, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2425, 5594, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2426, 5594, '_additional_settings', ''),
(2427, 5594, '_locale', 'en_US'),
(2428, 6635, 'stm_date', '1617580800000'),
(2429, 6635, 'rs_page_bg_color', ''),
(2430, 6635, '_thumbnail_id', '5588'),
(2431, 6635, 'slide_template', ''),
(2432, 6635, 'stm_agenda', 'How to run your business in quarantineHow to run your business in quarantineFanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2433, 6635, 'stm_host', ''),
(2434, 6635, 'stm_date', '1611255600000'),
(2435, 6635, 'stm_time', '17:00'),
(2436, 6635, 'stm_timezone', 'America/Los_Angeles'),
(2437, 6635, 'stm_duration', '30'),
(2438, 6635, 'stm_password', 'f67lgd6'),
(2439, 6635, 'stm_join_before_host', ''),
(2440, 6635, 'stm_host_join_start', ''),
(2441, 6635, 'stm_start_after_participants', 'on'),
(2442, 6635, 'stm_mute_participants', ''),
(2443, 6635, 'stm_enforce_login', ''),
(2444, 6635, 'stm_alternative_hosts', ''),
(2445, 6635, '_wpb_vc_js_status', 'false'),
(2446, 6635, 'stm_zoom_data', 'a:15:{s:4:\"uuid\";s:24:\"S6dEi4jJT5Gk4qazGGbzzw==\";s:2:\"id\";i:96510776645;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:38:\"How to run your business in quarantine\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-05-07T01:13:00Z\";s:8:\"duration\";i:60;s:8:\"timezone\";s:13:\"Europe/London\";s:6:\"agenda\";s:76:\"How to run your business in quarantineHow to run your business in quarantine\";s:10:\"created_at\";s:20:\"2020-05-07T12:34:58Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/96510776645?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6Im4xbkZzWDdWQWR6cmh0WjNQR3lqdWVhc3R3Qmd3cnVWa05yU0pBc296azguRWdJQUFBRng3eUhBRHdBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg4ODYyMDk4LCJpYXQiOjE1ODg4NTQ4OTgsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.1tEr_B9sTcxwhoby8htfLL2jJ68OjbHhUOOVM5cwGP4\";s:8:\"join_url\";s:29:\"https://zoom.us/j/96510776645\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:1;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"both\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2447, 6635, '_wp_old_slug', 'how-to-run-your-business-in-quarantine'),
(2448, 6734, 'stm_date', '1617580800000'),
(2449, 6734, '_thumbnail_id', '5588'),
(2450, 6734, '_wp_old_slug', 'eroom-zoom-2'),
(2451, 6734, 'slide_template', ''),
(2452, 6734, 'stm_agenda', 'Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2453, 6734, 'stm_host', ''),
(2454, 6734, 'stm_date', 'NaN'),
(2455, 6734, 'stm_time', ''),
(2456, 6734, 'stm_timezone', 'America/Denver'),
(2457, 6734, 'stm_duration', '60'),
(2458, 6734, 'stm_password', ''),
(2459, 6734, 'stm_join_before_host', ''),
(2460, 6734, 'stm_host_join_start', ''),
(2461, 6734, 'stm_start_after_participants', ''),
(2462, 6734, 'stm_mute_participants', ''),
(2463, 6734, 'stm_enforce_login', ''),
(2464, 6734, 'stm_alternative_hosts', ''),
(2465, 6734, '_wpb_vc_js_status', 'false'),
(2466, 6734, 'stm_zoom_data', 'a:18:{s:4:\"uuid\";s:24:\"4eAokcc5Rr2TmMOOu8nhmw==\";s:2:\"id\";i:91655007505;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:20:\"Competitive research\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-12-16T09:44:00Z\";s:8:\"duration\";i:60;s:8:\"timezone\";s:14:\"America/Denver\";s:10:\"created_at\";s:20:\"2020-05-12T12:13:32Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/91655007505?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6IlpxbFgwZFhLWmRuV0tWV0tlbTl1MWEtaUtvWGpQRE5feEZUbkg3R3RQVzguRWdJQUFBRnlDTTNyTGdBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg5MjkyODEyLCJpYXQiOjE1ODkyODU2MTIsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.DKswXMECvC9jHHs_CG2k6SSRWOzymTXmfNqrvZ85_QU\";s:8:\"join_url\";s:66:\"https://zoom.us/j/91655007505?pwd=TkI0NE5pSlhpOUhkcFpQaE4xQlJ1dz09\";s:8:\"password\";s:6:\"4kH3Vx\";s:13:\"h323_password\";s:6:\"321967\";s:13:\"pstn_password\";s:6:\"321967\";s:18:\"encrypted_password\";s:32:\"TkI0NE5pSlhpOUhkcFpQaE4xQlJ1dz09\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:0;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"voip\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2467, 6734, 'rs_page_bg_color', ''),
(2468, 6748, 'stm_date', '1617580800000'),
(2469, 6748, 'rs_page_bg_color', ''),
(2470, 6748, '_thumbnail_id', '5588'),
(2471, 6748, 'slide_template', ''),
(2472, 6748, 'stm_agenda', 'Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2473, 6748, 'stm_host', ''),
(2474, 6748, 'stm_date', '1606417200000'),
(2475, 6748, 'stm_time', '19:00'),
(2476, 6748, 'stm_timezone', 'America/Los_Angeles'),
(2477, 6748, 'stm_duration', '30'),
(2478, 6748, 'stm_password', 'i2fl6ll3'),
(2479, 6748, 'stm_join_before_host', ''),
(2480, 6748, 'stm_host_join_start', ''),
(2481, 6748, 'stm_start_after_participants', ''),
(2482, 6748, 'stm_mute_participants', ''),
(2483, 6748, 'stm_enforce_login', ''),
(2484, 6748, 'stm_alternative_hosts', ''),
(2485, 6748, '_wpb_vc_js_status', 'false'),
(2486, 6748, 'stm_zoom_data', 'a:18:{s:4:\"uuid\";s:24:\"lV5GigW6TpiRMWVzu2zw3g==\";s:2:\"id\";i:97319941972;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:22:\"Accounting Franchising\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-11-27T22:22:00Z\";s:8:\"duration\";i:60;s:8:\"timezone\";s:19:\"America/Los_Angeles\";s:10:\"created_at\";s:20:\"2020-05-12T12:13:36Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/97319941972?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6InBNWExjakVaaTlVTTF3S2JoNEFVNE1zR2pTdGxjVE9aOU9oZVpoVUVNYXcuRWdJQUFBRnlDTTM5S0FBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg5MjkyODE2LCJpYXQiOjE1ODkyODU2MTYsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.8k_gI4XBOOiQKF3_4l9xDu7dAMG8OcaS9RWTaXgXBPI\";s:8:\"join_url\";s:66:\"https://zoom.us/j/97319941972?pwd=aUQ3eDhsRVFlWE4ydGZOTG9RSkwvUT09\";s:8:\"password\";s:6:\"1BkYqy\";s:13:\"h323_password\";s:6:\"883056\";s:13:\"pstn_password\";s:6:\"883056\";s:18:\"encrypted_password\";s:32:\"aUQ3eDhsRVFlWE4ydGZOTG9RSkwvUT09\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:0;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"voip\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2487, 6749, 'stm_date', '1617580800000'),
(2488, 6749, 'rs_page_bg_color', ''),
(2489, 6749, '_thumbnail_id', '5588'),
(2490, 6749, 'slide_template', ''),
(2491, 6749, 'stm_agenda', 'Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2492, 6749, 'stm_host', ''),
(2493, 6749, 'stm_date', '1597863600000'),
(2494, 6749, 'stm_time', '16:00'),
(2495, 6749, 'stm_timezone', 'America/Los_Angeles'),
(2496, 6749, 'stm_duration', ''),
(2497, 6749, 'stm_password', 's3lki4'),
(2498, 6749, 'stm_join_before_host', ''),
(2499, 6749, 'stm_host_join_start', ''),
(2500, 6749, 'stm_start_after_participants', ''),
(2501, 6749, 'stm_mute_participants', ''),
(2502, 6749, 'stm_enforce_login', ''),
(2503, 6749, 'stm_alternative_hosts', ''),
(2504, 6749, '_wpb_vc_js_status', 'false'),
(2505, 6749, 'stm_zoom_data', 'a:18:{s:4:\"uuid\";s:24:\"OEnTbT4aScKZueQqJGJoHw==\";s:2:\"id\";i:94878376193;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:17:\"Economics Finance\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-08-20T23:54:00Z\";s:8:\"duration\";i:60;s:8:\"timezone\";s:19:\"America/Los_Angeles\";s:10:\"created_at\";s:20:\"2020-05-12T12:13:41Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/94878376193?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6IkxtWkd2blZ6Z0czZWlxcDE5MkRnQzI5Vi1xcmFMODRvUnc5SUcwaDFQRzAuRWdJQUFBRnlDTTRPb2dBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg5MjkyODIxLCJpYXQiOjE1ODkyODU2MjEsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.dZ4X5iw8IROz89XrsfcmunX1dupPDVKFHoDcFwfTMzs\";s:8:\"join_url\";s:66:\"https://zoom.us/j/94878376193?pwd=WFBZUlRta2RnYkxyVGVIQXZNTVFwZz09\";s:8:\"password\";s:6:\"3Cke2k\";s:13:\"h323_password\";s:6:\"430712\";s:13:\"pstn_password\";s:6:\"430712\";s:18:\"encrypted_password\";s:32:\"WFBZUlRta2RnYkxyVGVIQXZNTVFwZz09\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:0;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"voip\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2506, 6750, 'stm_date', '1617580800000'),
(2507, 6750, '_wp_old_slug', 'how-to-run-your-business-in-quarantine'),
(2508, 6750, 'rs_page_bg_color', ''),
(2509, 6750, '_thumbnail_id', '5588'),
(2510, 6750, '_wp_old_slug', 'funding-trends'),
(2511, 6750, 'slide_template', ''),
(2512, 6750, 'stm_agenda', 'Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2513, 6750, 'stm_host', ''),
(2514, 6750, 'stm_date', '1605726000000'),
(2515, 6750, 'stm_time', '02:00'),
(2516, 6750, 'stm_timezone', 'America/Los_Angeles'),
(2517, 6750, 'stm_duration', ''),
(2518, 6750, 'stm_password', 'gafg443t1'),
(2519, 6750, 'stm_join_before_host', ''),
(2520, 6750, 'stm_host_join_start', ''),
(2521, 6750, 'stm_start_after_participants', ''),
(2522, 6750, 'stm_mute_participants', ''),
(2523, 6750, 'stm_enforce_login', ''),
(2524, 6750, 'stm_alternative_hosts', ''),
(2525, 6750, 'stm_zoom_data', 'a:18:{s:4:\"uuid\";s:24:\"Yiw7JsUQSt2m1giMalRC+Q==\";s:2:\"id\";i:99064268142;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:14:\"Funding trends\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-11-19T22:43:00Z\";s:8:\"duration\";i:60;s:8:\"timezone\";s:19:\"America/Los_Angeles\";s:10:\"created_at\";s:20:\"2020-05-12T12:13:04Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/99064268142?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6InNhRVN2djRyeWp1cDI1a3djbUc4MFIzQlVpclpZeGQwMGpiODhoOGhvY00uRWdJQUFBRnlDTTFfalFBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg5MjkyNzg0LCJpYXQiOjE1ODkyODU1ODQsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.hDRf2nYbpN8gYAj9iK8mLiEJDyvz8nDTPPLiQj1jPso\";s:8:\"join_url\";s:66:\"https://zoom.us/j/99064268142?pwd=bU1wR0xhTlZ4LzZYRDN4YWFUR1hzZz09\";s:8:\"password\";s:6:\"1K6JHk\";s:13:\"h323_password\";s:6:\"189280\";s:13:\"pstn_password\";s:6:\"189280\";s:18:\"encrypted_password\";s:32:\"bU1wR0xhTlZ4LzZYRDN4YWFUR1hzZz09\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:0;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"voip\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2526, 6750, '_wpb_vc_js_status', 'false'),
(2527, 6785, 'stm_date', '1617580800000'),
(2528, 6785, 'stm_zoom_data', 'a:19:{s:4:\"uuid\";s:24:\"KcIg+t0jQkuf1dF28GugzQ==\";s:2:\"id\";i:99074856671;s:7:\"host_id\";s:22:\"CJtEMMt_Q7qDNQQCeS-S8Q\";s:5:\"topic\";s:14:\"Funding trends\";s:4:\"type\";i:2;s:6:\"status\";s:7:\"waiting\";s:10:\"start_time\";s:20:\"2020-08-19T23:56:00Z\";s:8:\"duration\";i:58;s:8:\"timezone\";s:19:\"America/Los_Angeles\";s:6:\"agenda\";s:227:\"Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown\";s:10:\"created_at\";s:20:\"2020-05-20T05:45:53Z\";s:9:\"start_url\";s:541:\"https://zoom.us/s/99074856671?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJDSnRFTU10X1E3cUROUVFDZVMtUzhRIiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6IjdfaHpheFktYjhTM09FaGFmZl9OclMzMHppanU2aVVtb3pHMmd5RUVQdHcuRWdJQUFBRnlNSjNrSkFBQUhDQWdPSFZ3V1hWdGQzRm5TVGcyV0dGWFpVUjZkRk5TTkhWNU5GZENNRUV3WlZBQURETkRRa0YxYjJsWlV6TnpQUU5oZHpFIiwiZXhwIjoxNTg5OTYwNzUzLCJpYXQiOjE1ODk5NTM1NTMsImFpZCI6Ik1NTkZvNHdUVGhtTFhBaTREZ2hINGciLCJjaWQiOiIifQ.AxJRwXdDVysmeBM4gvYM11bZ18uBSfhOMhsUajYNb3U\";s:8:\"join_url\";s:66:\"https://zoom.us/j/99074856671?pwd=bnR0NHBtdFZVUi85T21kUWQ2R0swQT09\";s:8:\"password\";s:8:\"we57nfs4\";s:13:\"h323_password\";s:6:\"194960\";s:13:\"pstn_password\";s:6:\"194960\";s:18:\"encrypted_password\";s:32:\"bnR0NHBtdFZVUi85T21kUWQ2R0swQT09\";s:8:\"settings\";a:19:{s:10:\"host_video\";b:0;s:17:\"participant_video\";b:0;s:10:\"cn_meeting\";b:0;s:10:\"in_meeting\";b:0;s:16:\"join_before_host\";b:0;s:15:\"mute_upon_entry\";b:0;s:9:\"watermark\";b:0;s:7:\"use_pmi\";b:0;s:13:\"approval_type\";i:2;s:5:\"audio\";s:4:\"voip\";s:14:\"auto_recording\";s:4:\"none\";s:13:\"enforce_login\";b:0;s:21:\"enforce_login_domains\";s:0:\"\";s:17:\"alternative_hosts\";s:0:\"\";s:18:\"close_registration\";b:0;s:30:\"registrants_confirmation_email\";b:1;s:12:\"waiting_room\";b:1;s:30:\"registrants_email_notification\";b:1;s:22:\"meeting_authentication\";b:0;}s:4:\"code\";i:201;}'),
(2529, 6785, '_thumbnail_id', '5588'),
(2530, 6785, 'slide_template', ''),
(2531, 6785, 'stm_agenda', 'Fanny pack taiyaki sartorial four loko disrupt green juice authentic jianbing lo-fi helvetica dreamcatcher. Cornhole artisan you probably haven’t heard of them, celiac cold-pressed pitchfork vexillologist knausgaard stumptown'),
(2532, 6785, 'stm_host', ''),
(2533, 6785, 'stm_date', '1597777200000'),
(2534, 6785, 'stm_time', '10:00'),
(2535, 6785, 'stm_timezone', 'America/Los_Angeles'),
(2536, 6785, 'stm_duration', '58'),
(2537, 6785, 'stm_password', 'we57nfs4'),
(2538, 6785, 'stm_join_before_host', ''),
(2539, 6785, 'stm_host_join_start', ''),
(2540, 6785, 'stm_start_after_participants', ''),
(2541, 6785, 'stm_mute_participants', ''),
(2542, 6785, 'stm_enforce_login', ''),
(2543, 6785, 'stm_alternative_hosts', ''),
(2544, 6785, '_wpb_vc_js_status', 'false'),
(2545, 6785, 'rs_page_bg_color', ''),
(2546, 1380, '_form', '<div class=\"request_callback_6\">\n    <div class=\"row\">\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n    </div>\n    <div class=\"row\">\n      <div class=\"col-xs-12\">\n        <div class=\"input-group text-center\">\n          <button type=\"submit\" class=\"button theme_style_2 size-lg icon_right\">SUBMIT <i class=\"fa fa-chevron-right\"></i></button>\n        </div>\n     </div>\n    </div>\n</div>'),
(2547, 1380, '_mail', ''),
(2548, 1380, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2549, 1380, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2550, 1380, '_additional_settings', ''),
(2551, 1380, '_locale', 'en_US'),
(2552, 1380, '_form', '<div class=\"request_callback_6\">\n    <div class=\"row\">\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n    </div>\n    <div class=\"row\">\n      <div class=\"col-xs-12\">\n        <div class=\"input-group text-center\">\n          <button type=\"submit\" class=\"button theme_style_2 size-lg icon_right\">SUBMIT <i class=\"fa fa-chevron-right\"></i></button>\n        </div>\n     </div>\n    </div>\n</div>'),
(2553, 1380, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2554, 1380, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(2555, 1380, '_additional_settings', ''),
(2556, 1380, '_locale', 'en_US'),
(2557, 1474, '_form', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [text title placeholder akismet:author_title \"Title\"]\n            </div>\n            <div class=\"input-group\">\n                [text company placeholder akismet:author_company \"Company/Position\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n            </div>\n            <div class=\"input-group\">\n                [text* subject placeholder akismet:author_subject \"Subject *\"]\n            </div>\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2558, 1474, '_mail', ''),
(2559, 1474, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:24:\"Con Two \"[your-subject]\"\";s:6:\"sender\";s:31:\"Con Two <wordpress@consult.loc>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\";s:18:\"additional_headers\";s:25:\"Reply-To: dl@stylemix.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2560, 1474, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(2561, 1474, '_additional_settings', ''),
(2562, 1474, '_locale', 'en_US'),
(2563, 1475, '_form', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* subject placeholder \"Subject *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2564, 1475, '_mail', ''),
(2565, 1475, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:24:\"Con Two \"[your-subject]\"\";s:6:\"sender\";s:31:\"Con Two <wordpress@consult.loc>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\";s:18:\"additional_headers\";s:25:\"Reply-To: dl@stylemix.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2566, 1475, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(2567, 1475, '_additional_settings', ''),
(2568, 1475, '_locale', 'en_US'),
(2569, 1476, '_form', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message class:height205 placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n            </div>\n            <div class=\"input-group\">\n                [text* subject placeholder akismet:author_subject \"Subject *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>'),
(2570, 1476, '_mail', ''),
(2571, 1476, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:24:\"Con Two \"[your-subject]\"\";s:6:\"sender\";s:31:\"Con Two <wordpress@consult.loc>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\";s:18:\"additional_headers\";s:25:\"Reply-To: dl@stylemix.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2572, 1476, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(2573, 1476, '_additional_settings', ''),
(2574, 1476, '_locale', 'en_US'),
(2575, 1477, '_form', '<div class=\"request_callback\">\n        <div class=\"input-group\">\n            [textarea* message class:height147 placeholder \"Your Message *\"]\n        </div>\n        <div class=\"input-group\">\n            [text* text-name placeholder akismet:author \"First name *\"]\n        </div>\n        <div class=\"input-group\">\n            [email* email placeholder akismet:author_email \"E-mail *\"]\n        </div>\n        <div class=\"input-group\">\n            [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n        </div>\n        <div class=\"input-group\">\n            [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n        </div>\n        <div class=\"input-group\">\n            [text* subject placeholder akismet:author_subject \"Subject *\"]\n        </div>\n        <div class=\"input-group\">\n            <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n        </div>\n</div>'),
(2576, 1477, '_mail', ''),
(2577, 1477, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:24:\"Con Two \"[your-subject]\"\";s:6:\"sender\";s:31:\"Con Two <wordpress@consult.loc>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\";s:18:\"additional_headers\";s:25:\"Reply-To: dl@stylemix.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2578, 1477, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(2579, 1477, '_additional_settings', ''),
(2580, 1477, '_locale', 'en_US'),
(2581, 4451, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(2582, 4451, '_messages', 'a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(2583, 4451, '_additional_settings', ''),
(2584, 4451, '_locale', 'en_US'),
(2585, 4451, '_form', '<div class=\"contact_us\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea your-message placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* your-name placeholder \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* your-email placeholder \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [tel* your-phone placeholder \"Phone *\"]\n            </div>\n        </div>\n    </div>\n    <div class=\"input-group text-center\">\n      <button type=\"submit\" class=\"button theme_style_4 size-lg bordered icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n    </div>\n</div>'),
(2586, 4451, '_mail', ''),
(2587, 6787, '_menu_item_type', 'post_type'),
(2588, 6787, '_menu_item_menu_item_parent', '0'),
(2589, 6787, '_menu_item_object_id', '1071'),
(2590, 6787, '_menu_item_object', 'page'),
(2591, 6787, '_menu_item_target', ''),
(2592, 6787, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2593, 6787, '_menu_item_xfn', ''),
(2594, 6787, '_menu_item_url', ''),
(2595, 6787, '_menu_item_stm_mega', 'disabled'),
(2596, 6787, '_menu_item_stm_mega_cols', 'default'),
(2597, 6787, '_menu_item_stm_mega_col_width', 'default'),
(2598, 6787, '_menu_item_stm_mega_cols_inside', 'default'),
(2599, 6787, '_menu_item_stm_mega_second_col_width', 'default'),
(2600, 6788, '_menu_item_type', 'post_type'),
(2601, 6788, '_menu_item_menu_item_parent', '0'),
(2602, 6788, '_menu_item_object_id', '324'),
(2603, 6788, '_menu_item_object', 'page'),
(2604, 6788, '_menu_item_target', ''),
(2605, 6788, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2606, 6788, '_menu_item_xfn', ''),
(2607, 6788, '_menu_item_url', ''),
(2608, 6789, '_menu_item_type', 'post_type'),
(2609, 6789, '_menu_item_menu_item_parent', '0'),
(2610, 6789, '_menu_item_object_id', '5593'),
(2611, 6789, '_menu_item_object', 'page'),
(2612, 6789, '_menu_item_target', ''),
(2613, 6789, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2614, 6789, '_menu_item_xfn', ''),
(2615, 6789, '_menu_item_url', ''),
(2616, 6790, '_menu_item_type', 'post_type'),
(2617, 6790, '_menu_item_menu_item_parent', '0'),
(2618, 6790, '_menu_item_object_id', '6483'),
(2619, 6790, '_menu_item_object', 'page'),
(2620, 6790, '_menu_item_target', ''),
(2621, 6790, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2622, 6790, '_menu_item_xfn', ''),
(2623, 6790, '_menu_item_url', ''),
(2624, 6791, '_menu_item_type', 'post_type'),
(2625, 6791, '_menu_item_menu_item_parent', '0'),
(2626, 6791, '_menu_item_object_id', '6485'),
(2627, 6791, '_menu_item_object', 'page'),
(2628, 6791, '_menu_item_target', ''),
(2629, 6791, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2630, 6791, '_menu_item_xfn', ''),
(2631, 6791, '_menu_item_url', ''),
(2632, 6792, '_menu_item_type', 'post_type'),
(2633, 6792, '_menu_item_menu_item_parent', '0'),
(2634, 6792, '_menu_item_object_id', '6484'),
(2635, 6792, '_menu_item_object', 'page'),
(2636, 6792, '_menu_item_target', ''),
(2637, 6792, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2638, 6792, '_menu_item_xfn', ''),
(2639, 6792, '_menu_item_url', ''),
(2640, 6793, '_menu_item_type', 'post_type'),
(2641, 6793, '_menu_item_menu_item_parent', '6479'),
(2642, 6793, '_menu_item_object_id', '5593'),
(2643, 6793, '_menu_item_object', 'page'),
(2644, 6793, '_menu_item_target', ''),
(2645, 6793, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2646, 6793, '_menu_item_xfn', ''),
(2647, 6793, '_menu_item_url', ''),
(2648, 6793, '_menu_item_stm_mega', 'disabled'),
(2649, 6793, '_menu_item_stm_mega_cols', 'default'),
(2650, 6793, '_menu_item_stm_mega_col_width', 'default'),
(2651, 6793, '_menu_item_stm_mega_cols_inside', 'default'),
(2652, 6793, '_menu_item_stm_mega_second_col_width', 'default'),
(2653, 6793, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(2654, 6794, '_menu_item_type', 'post_type'),
(2655, 6794, '_menu_item_menu_item_parent', '0'),
(2656, 6794, '_menu_item_object_id', '6483'),
(2657, 6794, '_menu_item_object', 'page'),
(2658, 6794, '_menu_item_target', ''),
(2659, 6794, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2660, 6794, '_menu_item_xfn', ''),
(2661, 6794, '_menu_item_url', ''),
(2662, 6794, '_menu_item_stm_mega', 'disabled'),
(2663, 6794, '_menu_item_stm_mega_cols', 'default'),
(2664, 6794, '_menu_item_stm_mega_col_width', 'default'),
(2665, 6794, '_menu_item_stm_mega_cols_inside', 'default'),
(2666, 6794, '_menu_item_stm_mega_second_col_width', 'default'),
(2667, 6795, '_menu_item_type', 'post_type'),
(2668, 6795, '_menu_item_menu_item_parent', '6479'),
(2669, 6795, '_menu_item_object_id', '324'),
(2670, 6795, '_menu_item_object', 'page'),
(2671, 6795, '_menu_item_target', ''),
(2672, 6795, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2673, 6795, '_menu_item_xfn', ''),
(2674, 6795, '_menu_item_url', ''),
(2675, 6795, '_menu_item_stm_mega', 'disabled'),
(2676, 6795, '_menu_item_stm_mega_cols', 'default'),
(2677, 6795, '_menu_item_stm_mega_col_width', 'default'),
(2678, 6795, '_menu_item_stm_mega_cols_inside', 'default'),
(2679, 6795, '_menu_item_stm_mega_second_col_width', 'default'),
(2680, 6795, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(2681, 6796, '_menu_item_type', 'post_type'),
(2682, 6796, '_menu_item_menu_item_parent', '6794'),
(2683, 6796, '_menu_item_object_id', '344'),
(2684, 6796, '_menu_item_object', 'page'),
(2685, 6796, '_menu_item_target', ''),
(2686, 6796, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2687, 6796, '_menu_item_xfn', ''),
(2688, 6796, '_menu_item_url', ''),
(2689, 6796, '_menu_item_stm_mega', 'disabled'),
(2690, 6796, '_menu_item_stm_mega_cols', 'default'),
(2691, 6796, '_menu_item_stm_mega_col_width', 'default'),
(2692, 6796, '_menu_item_stm_mega_cols_inside', 'default'),
(2693, 6796, '_menu_item_stm_mega_second_col_width', 'default'),
(2694, 6797, '_menu_item_type', 'post_type'),
(2695, 6797, '_menu_item_menu_item_parent', '0'),
(2696, 6797, '_menu_item_object_id', '344'),
(2697, 6797, '_menu_item_object', 'page'),
(2698, 6797, '_menu_item_target', ''),
(2699, 6797, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2700, 6797, '_menu_item_xfn', ''),
(2701, 6797, '_menu_item_url', ''),
(2702, 6798, '_menu_item_type', 'post_type'),
(2703, 6798, '_menu_item_menu_item_parent', '6794'),
(2704, 6798, '_menu_item_object_id', '377'),
(2705, 6798, '_menu_item_object', 'page'),
(2706, 6798, '_menu_item_target', ''),
(2707, 6798, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2708, 6798, '_menu_item_xfn', ''),
(2709, 6798, '_menu_item_url', ''),
(2710, 6798, '_menu_item_stm_mega', 'disabled'),
(2711, 6798, '_menu_item_stm_mega_cols', 'default'),
(2712, 6798, '_menu_item_stm_mega_col_width', 'default'),
(2713, 6798, '_menu_item_stm_mega_cols_inside', 'default'),
(2714, 6798, '_menu_item_stm_mega_second_col_width', 'default'),
(2715, 6799, '_menu_item_type', 'post_type'),
(2716, 6799, '_menu_item_menu_item_parent', '0'),
(2717, 6799, '_menu_item_object_id', '377'),
(2718, 6799, '_menu_item_object', 'page'),
(2719, 6799, '_menu_item_target', ''),
(2720, 6799, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2721, 6799, '_menu_item_xfn', ''),
(2722, 6799, '_menu_item_url', ''),
(2723, 6800, '_menu_item_type', 'post_type'),
(2724, 6800, '_menu_item_menu_item_parent', '0'),
(2725, 6800, '_menu_item_object_id', '390'),
(2726, 6800, '_menu_item_object', 'page'),
(2727, 6800, '_menu_item_target', ''),
(2728, 6800, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2729, 6800, '_menu_item_xfn', ''),
(2730, 6800, '_menu_item_url', ''),
(2731, 6801, '_menu_item_type', 'post_type'),
(2732, 6801, '_menu_item_menu_item_parent', '6794'),
(2733, 6801, '_menu_item_object_id', '390'),
(2734, 6801, '_menu_item_object', 'page'),
(2735, 6801, '_menu_item_target', ''),
(2736, 6801, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2737, 6801, '_menu_item_xfn', ''),
(2738, 6801, '_menu_item_url', ''),
(2739, 6801, '_menu_item_stm_mega', 'disabled'),
(2740, 6801, '_menu_item_stm_mega_cols', 'default'),
(2741, 6801, '_menu_item_stm_mega_col_width', 'default'),
(2742, 6801, '_menu_item_stm_mega_cols_inside', 'default');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2743, 6801, '_menu_item_stm_mega_second_col_width', 'default'),
(2744, 6802, '_menu_item_type', 'post_type'),
(2745, 6802, '_menu_item_menu_item_parent', '6794'),
(2746, 6802, '_menu_item_object_id', '408'),
(2747, 6802, '_menu_item_object', 'page'),
(2748, 6802, '_menu_item_target', ''),
(2749, 6802, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2750, 6802, '_menu_item_xfn', ''),
(2751, 6802, '_menu_item_url', ''),
(2752, 6802, '_menu_item_stm_mega', 'disabled'),
(2753, 6802, '_menu_item_stm_mega_cols', 'default'),
(2754, 6802, '_menu_item_stm_mega_col_width', 'default'),
(2755, 6802, '_menu_item_stm_mega_cols_inside', 'default'),
(2756, 6802, '_menu_item_stm_mega_second_col_width', 'default'),
(2757, 6803, '_menu_item_type', 'post_type'),
(2758, 6803, '_menu_item_menu_item_parent', '0'),
(2759, 6803, '_menu_item_object_id', '408'),
(2760, 6803, '_menu_item_object', 'page'),
(2761, 6803, '_menu_item_target', ''),
(2762, 6803, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2763, 6803, '_menu_item_xfn', ''),
(2764, 6803, '_menu_item_url', ''),
(2765, 6804, '_menu_item_type', 'post_type'),
(2766, 6804, '_menu_item_menu_item_parent', '0'),
(2767, 6804, '_menu_item_object_id', '6483'),
(2768, 6804, '_menu_item_object', 'page'),
(2769, 6804, '_menu_item_target', ''),
(2770, 6804, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2771, 6804, '_menu_item_xfn', ''),
(2772, 6804, '_menu_item_url', ''),
(2773, 6805, '_menu_item_type', 'post_type'),
(2774, 6805, '_menu_item_menu_item_parent', '6830'),
(2775, 6805, '_menu_item_object_id', '440'),
(2776, 6805, '_menu_item_object', 'page'),
(2777, 6805, '_menu_item_target', ''),
(2778, 6805, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2779, 6805, '_menu_item_xfn', ''),
(2780, 6805, '_menu_item_url', ''),
(2781, 6805, '_menu_item_stm_mega', 'disabled'),
(2782, 6805, '_menu_item_stm_mega_cols', 'default'),
(2783, 6805, '_menu_item_stm_mega_col_width', 'default'),
(2784, 6805, '_menu_item_stm_mega_cols_inside', 'default'),
(2785, 6805, '_menu_item_stm_mega_second_col_width', 'default'),
(2786, 6806, '_menu_item_type', 'post_type'),
(2787, 6806, '_menu_item_menu_item_parent', '0'),
(2788, 6806, '_menu_item_object_id', '440'),
(2789, 6806, '_menu_item_object', 'page'),
(2790, 6806, '_menu_item_target', ''),
(2791, 6806, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2792, 6806, '_menu_item_xfn', ''),
(2793, 6806, '_menu_item_url', ''),
(2794, 6807, '_menu_item_type', 'post_type'),
(2795, 6807, '_menu_item_menu_item_parent', '0'),
(2796, 6807, '_menu_item_object_id', '462'),
(2797, 6807, '_menu_item_object', 'page'),
(2798, 6807, '_menu_item_target', ''),
(2799, 6807, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2800, 6807, '_menu_item_xfn', ''),
(2801, 6807, '_menu_item_url', ''),
(2802, 6808, '_menu_item_type', 'post_type'),
(2803, 6808, '_menu_item_menu_item_parent', '6830'),
(2804, 6808, '_menu_item_object_id', '462'),
(2805, 6808, '_menu_item_object', 'page'),
(2806, 6808, '_menu_item_target', ''),
(2807, 6808, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2808, 6808, '_menu_item_xfn', ''),
(2809, 6808, '_menu_item_url', ''),
(2810, 6808, '_menu_item_stm_mega', 'disabled'),
(2811, 6808, '_menu_item_stm_mega_cols', 'default'),
(2812, 6808, '_menu_item_stm_mega_col_width', 'default'),
(2813, 6808, '_menu_item_stm_mega_cols_inside', 'default'),
(2814, 6808, '_menu_item_stm_mega_second_col_width', 'default'),
(2815, 6809, '_menu_item_type', 'post_type'),
(2816, 6809, '_menu_item_menu_item_parent', '0'),
(2817, 6809, '_menu_item_object_id', '6484'),
(2818, 6809, '_menu_item_object', 'page'),
(2819, 6809, '_menu_item_target', ''),
(2820, 6809, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2821, 6809, '_menu_item_xfn', ''),
(2822, 6809, '_menu_item_url', ''),
(2823, 6809, '_menu_item_stm_mega', 'disabled'),
(2824, 6809, '_menu_item_stm_mega_cols', 'default'),
(2825, 6809, '_menu_item_stm_mega_col_width', 'default'),
(2826, 6809, '_menu_item_stm_mega_cols_inside', 'default'),
(2827, 6809, '_menu_item_stm_mega_second_col_width', 'default'),
(2828, 6810, '_menu_item_type', 'post_type'),
(2829, 6810, '_menu_item_menu_item_parent', '0'),
(2830, 6810, '_menu_item_object_id', '558'),
(2831, 6810, '_menu_item_object', 'page'),
(2832, 6810, '_menu_item_target', ''),
(2833, 6810, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2834, 6810, '_menu_item_xfn', ''),
(2835, 6810, '_menu_item_url', ''),
(2836, 6810, '_menu_item_stm_mega', 'disabled'),
(2837, 6810, '_menu_item_stm_mega_cols', 'default'),
(2838, 6810, '_menu_item_stm_mega_col_width', 'default'),
(2839, 6810, '_menu_item_stm_mega_cols_inside', 'default'),
(2840, 6810, '_menu_item_stm_mega_second_col_width', 'default'),
(2841, 6811, '_menu_item_type', 'post_type'),
(2842, 6811, '_menu_item_menu_item_parent', '0'),
(2843, 6811, '_menu_item_object_id', '571'),
(2844, 6811, '_menu_item_object', 'stm_service'),
(2845, 6811, '_menu_item_target', ''),
(2846, 6811, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2847, 6811, '_menu_item_xfn', ''),
(2848, 6811, '_menu_item_url', ''),
(2849, 6812, '_menu_item_type', 'post_type'),
(2850, 6812, '_menu_item_menu_item_parent', '0'),
(2851, 6812, '_menu_item_object_id', '570'),
(2852, 6812, '_menu_item_object', 'stm_service'),
(2853, 6812, '_menu_item_target', ''),
(2854, 6812, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2855, 6812, '_menu_item_xfn', ''),
(2856, 6812, '_menu_item_url', ''),
(2857, 6813, '_menu_item_type', 'post_type'),
(2858, 6813, '_menu_item_menu_item_parent', '0'),
(2859, 6813, '_menu_item_object_id', '569'),
(2860, 6813, '_menu_item_object', 'stm_service'),
(2861, 6813, '_menu_item_target', ''),
(2862, 6813, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2863, 6813, '_menu_item_xfn', ''),
(2864, 6813, '_menu_item_url', ''),
(2865, 6814, '_menu_item_type', 'post_type'),
(2866, 6814, '_menu_item_menu_item_parent', '0'),
(2867, 6814, '_menu_item_object_id', '568'),
(2868, 6814, '_menu_item_object', 'stm_service'),
(2869, 6814, '_menu_item_target', ''),
(2870, 6814, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2871, 6814, '_menu_item_xfn', ''),
(2872, 6814, '_menu_item_url', ''),
(2873, 6815, '_menu_item_type', 'post_type'),
(2874, 6815, '_menu_item_menu_item_parent', '0'),
(2875, 6815, '_menu_item_object_id', '567'),
(2876, 6815, '_menu_item_object', 'stm_service'),
(2877, 6815, '_menu_item_target', ''),
(2878, 6815, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2879, 6815, '_menu_item_xfn', ''),
(2880, 6815, '_menu_item_url', ''),
(2881, 6816, '_menu_item_type', 'post_type'),
(2882, 6816, '_menu_item_menu_item_parent', '0'),
(2883, 6816, '_menu_item_object_id', '566'),
(2884, 6816, '_menu_item_object', 'stm_service'),
(2885, 6816, '_menu_item_target', ''),
(2886, 6816, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2887, 6816, '_menu_item_xfn', ''),
(2888, 6816, '_menu_item_url', ''),
(2889, 6817, '_menu_item_type', 'post_type'),
(2890, 6817, '_menu_item_menu_item_parent', '0'),
(2891, 6817, '_menu_item_object_id', '565'),
(2892, 6817, '_menu_item_object', 'stm_service'),
(2893, 6817, '_menu_item_target', ''),
(2894, 6817, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2895, 6817, '_menu_item_xfn', ''),
(2896, 6817, '_menu_item_url', ''),
(2897, 6818, '_menu_item_type', 'post_type'),
(2898, 6818, '_menu_item_menu_item_parent', '0'),
(2899, 6818, '_menu_item_object_id', '563'),
(2900, 6818, '_menu_item_object', 'stm_service'),
(2901, 6818, '_menu_item_target', ''),
(2902, 6818, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2903, 6818, '_menu_item_xfn', ''),
(2904, 6818, '_menu_item_url', ''),
(2905, 6819, '_menu_item_type', 'post_type'),
(2906, 6819, '_menu_item_menu_item_parent', '6810'),
(2907, 6819, '_menu_item_object_id', '571'),
(2908, 6819, '_menu_item_object', 'stm_service'),
(2909, 6819, '_menu_item_target', ''),
(2910, 6819, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2911, 6819, '_menu_item_xfn', ''),
(2912, 6819, '_menu_item_url', ''),
(2913, 6819, '_menu_item_stm_mega', 'disabled'),
(2914, 6819, '_menu_item_stm_mega_cols', 'default'),
(2915, 6819, '_menu_item_stm_mega_col_width', 'default'),
(2916, 6819, '_menu_item_stm_mega_cols_inside', 'default'),
(2917, 6819, '_menu_item_stm_mega_second_col_width', 'default'),
(2918, 6820, '_menu_item_type', 'post_type'),
(2919, 6820, '_menu_item_menu_item_parent', '6810'),
(2920, 6820, '_menu_item_object_id', '570'),
(2921, 6820, '_menu_item_object', 'stm_service'),
(2922, 6820, '_menu_item_target', ''),
(2923, 6820, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2924, 6820, '_menu_item_xfn', ''),
(2925, 6820, '_menu_item_url', ''),
(2926, 6820, '_menu_item_stm_mega', 'disabled'),
(2927, 6820, '_menu_item_stm_mega_cols', 'default'),
(2928, 6820, '_menu_item_stm_mega_col_width', 'default'),
(2929, 6820, '_menu_item_stm_mega_cols_inside', 'default'),
(2930, 6820, '_menu_item_stm_mega_second_col_width', 'default'),
(2931, 6821, '_menu_item_type', 'post_type'),
(2932, 6821, '_menu_item_menu_item_parent', '6810'),
(2933, 6821, '_menu_item_object_id', '569'),
(2934, 6821, '_menu_item_object', 'stm_service'),
(2935, 6821, '_menu_item_target', ''),
(2936, 6821, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2937, 6821, '_menu_item_xfn', ''),
(2938, 6821, '_menu_item_url', ''),
(2939, 6821, '_menu_item_stm_mega', 'disabled'),
(2940, 6821, '_menu_item_stm_mega_cols', 'default'),
(2941, 6821, '_menu_item_stm_mega_col_width', 'default'),
(2942, 6821, '_menu_item_stm_mega_cols_inside', 'default'),
(2943, 6821, '_menu_item_stm_mega_second_col_width', 'default'),
(2944, 6822, '_menu_item_type', 'post_type'),
(2945, 6822, '_menu_item_menu_item_parent', '6856'),
(2946, 6822, '_menu_item_object_id', '601'),
(2947, 6822, '_menu_item_object', 'page'),
(2948, 6822, '_menu_item_target', ''),
(2949, 6822, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2950, 6822, '_menu_item_xfn', ''),
(2951, 6822, '_menu_item_url', ''),
(2952, 6822, '_menu_item_stm_mega', 'disabled'),
(2953, 6822, '_menu_item_stm_mega_cols', 'default'),
(2954, 6822, '_menu_item_stm_mega_col_width', 'default'),
(2955, 6822, '_menu_item_stm_mega_cols_inside', 'default'),
(2956, 6822, '_menu_item_stm_mega_second_col_width', 'default'),
(2957, 6823, '_menu_item_type', 'post_type'),
(2958, 6823, '_menu_item_menu_item_parent', '6856'),
(2959, 6823, '_menu_item_object_id', '614'),
(2960, 6823, '_menu_item_object', 'page'),
(2961, 6823, '_menu_item_target', ''),
(2962, 6823, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2963, 6823, '_menu_item_xfn', ''),
(2964, 6823, '_menu_item_url', ''),
(2965, 6823, '_menu_item_stm_mega', 'disabled'),
(2966, 6823, '_menu_item_stm_mega_cols', 'default'),
(2967, 6823, '_menu_item_stm_mega_col_width', 'default'),
(2968, 6823, '_menu_item_stm_mega_cols_inside', 'default'),
(2969, 6823, '_menu_item_stm_mega_second_col_width', 'default'),
(2970, 6824, '_menu_item_type', 'post_type'),
(2971, 6824, '_menu_item_menu_item_parent', '0'),
(2972, 6824, '_menu_item_object_id', '609'),
(2973, 6824, '_menu_item_object', 'stm_works'),
(2974, 6824, '_menu_item_target', ''),
(2975, 6824, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2976, 6824, '_menu_item_xfn', ''),
(2977, 6824, '_menu_item_url', ''),
(2978, 6825, '_menu_item_type', 'post_type'),
(2979, 6825, '_menu_item_menu_item_parent', '0'),
(2980, 6825, '_menu_item_object_id', '610'),
(2981, 6825, '_menu_item_object', 'stm_works'),
(2982, 6825, '_menu_item_target', ''),
(2983, 6825, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2984, 6825, '_menu_item_xfn', ''),
(2985, 6825, '_menu_item_url', ''),
(2986, 6826, '_menu_item_type', 'post_type'),
(2987, 6826, '_menu_item_menu_item_parent', '0'),
(2988, 6826, '_menu_item_object_id', '607'),
(2989, 6826, '_menu_item_object', 'stm_works'),
(2990, 6826, '_menu_item_target', ''),
(2991, 6826, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(2992, 6826, '_menu_item_xfn', ''),
(2993, 6826, '_menu_item_url', ''),
(2994, 6827, '_menu_item_type', 'post_type'),
(2995, 6827, '_menu_item_menu_item_parent', '6856'),
(2996, 6827, '_menu_item_object_id', '609'),
(2997, 6827, '_menu_item_object', 'stm_works'),
(2998, 6827, '_menu_item_target', ''),
(2999, 6827, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3000, 6827, '_menu_item_xfn', ''),
(3001, 6827, '_menu_item_url', ''),
(3002, 6827, '_menu_item_stm_mega', 'disabled'),
(3003, 6827, '_menu_item_stm_mega_cols', 'default'),
(3004, 6827, '_menu_item_stm_mega_col_width', 'default'),
(3005, 6827, '_menu_item_stm_mega_cols_inside', 'default'),
(3006, 6827, '_menu_item_stm_mega_second_col_width', 'default'),
(3007, 6828, '_menu_item_type', 'post_type'),
(3008, 6828, '_menu_item_menu_item_parent', '6856'),
(3009, 6828, '_menu_item_object_id', '610'),
(3010, 6828, '_menu_item_object', 'stm_works'),
(3011, 6828, '_menu_item_target', ''),
(3012, 6828, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3013, 6828, '_menu_item_xfn', ''),
(3014, 6828, '_menu_item_url', ''),
(3015, 6828, '_menu_item_stm_mega', 'disabled'),
(3016, 6828, '_menu_item_stm_mega_cols', 'default'),
(3017, 6828, '_menu_item_stm_mega_col_width', 'default'),
(3018, 6828, '_menu_item_stm_mega_cols_inside', 'default'),
(3019, 6828, '_menu_item_stm_mega_second_col_width', 'default'),
(3020, 6829, '_menu_item_type', 'post_type'),
(3021, 6829, '_menu_item_menu_item_parent', '6802'),
(3022, 6829, '_menu_item_object_id', '435'),
(3023, 6829, '_menu_item_object', 'stm_careers'),
(3024, 6829, '_menu_item_target', ''),
(3025, 6829, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3026, 6829, '_menu_item_xfn', ''),
(3027, 6829, '_menu_item_url', ''),
(3028, 6829, '_menu_item_stm_mega', 'disabled'),
(3029, 6829, '_menu_item_stm_mega_cols', 'default'),
(3030, 6829, '_menu_item_stm_mega_col_width', 'default'),
(3031, 6829, '_menu_item_stm_mega_cols_inside', 'default'),
(3032, 6829, '_menu_item_stm_mega_second_col_width', 'default'),
(3033, 6830, '_menu_item_type', 'post_type'),
(3034, 6830, '_menu_item_menu_item_parent', '6794'),
(3035, 6830, '_menu_item_object_id', '462'),
(3036, 6830, '_menu_item_object', 'page'),
(3037, 6830, '_menu_item_target', ''),
(3038, 6830, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3039, 6830, '_menu_item_xfn', ''),
(3040, 6830, '_menu_item_url', ''),
(3041, 6830, '_menu_item_stm_mega', 'disabled'),
(3042, 6830, '_menu_item_stm_mega_cols', 'default'),
(3043, 6830, '_menu_item_stm_mega_col_width', 'default'),
(3044, 6830, '_menu_item_stm_mega_cols_inside', 'default'),
(3045, 6830, '_menu_item_stm_mega_second_col_width', 'default'),
(3046, 6831, '_menu_item_type', 'post_type'),
(3047, 6831, '_menu_item_menu_item_parent', '6830'),
(3048, 6831, '_menu_item_object_id', '461'),
(3049, 6831, '_menu_item_object', 'stm_staff'),
(3050, 6831, '_menu_item_target', ''),
(3051, 6831, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3052, 6831, '_menu_item_xfn', ''),
(3053, 6831, '_menu_item_url', ''),
(3054, 6831, '_menu_item_stm_mega', 'disabled'),
(3055, 6831, '_menu_item_stm_mega_cols', 'default'),
(3056, 6831, '_menu_item_stm_mega_col_width', 'default'),
(3057, 6831, '_menu_item_stm_mega_cols_inside', 'default'),
(3058, 6831, '_menu_item_stm_mega_second_col_width', 'default'),
(3059, 6832, '_menu_item_type', 'post_type'),
(3060, 6832, '_menu_item_menu_item_parent', '6802'),
(3061, 6832, '_menu_item_object_id', '408'),
(3062, 6832, '_menu_item_object', 'page'),
(3063, 6832, '_menu_item_target', ''),
(3064, 6832, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3065, 6832, '_menu_item_xfn', ''),
(3066, 6832, '_menu_item_url', ''),
(3067, 6832, '_menu_item_stm_mega', 'disabled'),
(3068, 6832, '_menu_item_stm_mega_cols', 'default'),
(3069, 6832, '_menu_item_stm_mega_col_width', 'default'),
(3070, 6832, '_menu_item_stm_mega_cols_inside', 'default'),
(3071, 6832, '_menu_item_stm_mega_second_col_width', 'default'),
(3072, 6833, '_menu_item_type', 'post_type'),
(3073, 6833, '_menu_item_menu_item_parent', '6810'),
(3074, 6833, '_menu_item_object_id', '558'),
(3075, 6833, '_menu_item_object', 'page'),
(3076, 6833, '_menu_item_target', ''),
(3077, 6833, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3078, 6833, '_menu_item_xfn', ''),
(3079, 6833, '_menu_item_url', ''),
(3080, 6833, '_menu_item_stm_mega', 'disabled'),
(3081, 6833, '_menu_item_stm_mega_cols', 'default'),
(3082, 6833, '_menu_item_stm_mega_col_width', 'default'),
(3083, 6833, '_menu_item_stm_mega_cols_inside', 'default'),
(3084, 6833, '_menu_item_stm_mega_second_col_width', 'default'),
(3085, 6834, '_menu_item_type', 'post_type'),
(3086, 6834, '_menu_item_menu_item_parent', '6479'),
(3087, 6834, '_menu_item_object_id', '834'),
(3088, 6834, '_menu_item_object', 'page'),
(3089, 6834, '_menu_item_target', ''),
(3090, 6834, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3091, 6834, '_menu_item_xfn', ''),
(3092, 6834, '_menu_item_url', ''),
(3093, 6834, '_menu_item_stm_mega', 'disabled'),
(3094, 6834, '_menu_item_stm_mega_cols', 'default'),
(3095, 6834, '_menu_item_stm_mega_col_width', 'default'),
(3096, 6834, '_menu_item_stm_mega_cols_inside', 'default'),
(3097, 6834, '_menu_item_stm_mega_second_col_width', 'default'),
(3098, 6834, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(3099, 6835, '_menu_item_type', 'post_type'),
(3100, 6835, '_menu_item_menu_item_parent', '0'),
(3101, 6835, '_menu_item_object_id', '558'),
(3102, 6835, '_menu_item_object', 'page'),
(3103, 6835, '_menu_item_target', ''),
(3104, 6835, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3105, 6835, '_menu_item_xfn', ''),
(3106, 6835, '_menu_item_url', ''),
(3107, 6836, '_menu_item_type', 'post_type'),
(3108, 6836, '_menu_item_menu_item_parent', '0'),
(3109, 6836, '_menu_item_object_id', '408'),
(3110, 6836, '_menu_item_object', 'page'),
(3111, 6836, '_menu_item_target', ''),
(3112, 6836, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3113, 6836, '_menu_item_xfn', ''),
(3114, 6836, '_menu_item_url', ''),
(3115, 6837, '_menu_item_type', 'post_type'),
(3116, 6837, '_menu_item_menu_item_parent', '0'),
(3117, 6837, '_menu_item_object_id', '462'),
(3118, 6837, '_menu_item_object', 'page'),
(3119, 6837, '_menu_item_target', ''),
(3120, 6837, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3121, 6837, '_menu_item_xfn', ''),
(3122, 6837, '_menu_item_url', ''),
(3123, 6838, '_menu_item_type', 'post_type'),
(3124, 6838, '_menu_item_menu_item_parent', '0'),
(3125, 6838, '_menu_item_object_id', '834'),
(3126, 6838, '_menu_item_object', 'page'),
(3127, 6838, '_menu_item_target', ''),
(3128, 6838, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3129, 6838, '_menu_item_xfn', ''),
(3130, 6838, '_menu_item_url', ''),
(3131, 6839, '_menu_item_type', 'post_type'),
(3132, 6839, '_menu_item_menu_item_parent', '6479'),
(3133, 6839, '_menu_item_object_id', '1077'),
(3134, 6839, '_menu_item_object', 'page'),
(3135, 6839, '_menu_item_target', ''),
(3136, 6839, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3137, 6839, '_menu_item_xfn', ''),
(3138, 6839, '_menu_item_url', ''),
(3139, 6839, '_menu_item_stm_mega', 'disabled'),
(3140, 6839, '_menu_item_stm_mega_cols', 'default'),
(3141, 6839, '_menu_item_stm_mega_col_width', 'default'),
(3142, 6839, '_menu_item_stm_mega_cols_inside', 'default'),
(3143, 6839, '_menu_item_stm_mega_second_col_width', 'default'),
(3144, 6839, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(3145, 6840, '_menu_item_type', 'post_type'),
(3146, 6840, '_menu_item_menu_item_parent', '6480'),
(3147, 6840, '_menu_item_object_id', '1531'),
(3148, 6840, '_menu_item_object', 'page'),
(3149, 6840, '_menu_item_target', ''),
(3150, 6840, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3151, 6840, '_menu_item_xfn', ''),
(3152, 6840, '_menu_item_url', ''),
(3153, 6840, '_menu_item_stm_mega', 'disabled'),
(3154, 6840, '_menu_item_stm_mega_cols', 'default'),
(3155, 6840, '_menu_item_stm_mega_col_width', 'default'),
(3156, 6840, '_menu_item_stm_mega_cols_inside', 'default'),
(3157, 6840, '_menu_item_stm_mega_second_col_width', 'default'),
(3158, 6840, '_menu_item_stm_menu_icon', 'fa fa-bank'),
(3159, 6841, '_menu_item_type', 'post_type'),
(3160, 6841, '_menu_item_menu_item_parent', '6480'),
(3161, 6841, '_menu_item_object_id', '1530'),
(3162, 6841, '_menu_item_object', 'page'),
(3163, 6841, '_menu_item_target', ''),
(3164, 6841, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3165, 6841, '_menu_item_xfn', ''),
(3166, 6841, '_menu_item_url', ''),
(3167, 6841, '_menu_item_stm_mega', 'disabled'),
(3168, 6841, '_menu_item_stm_mega_cols', 'default'),
(3169, 6841, '_menu_item_stm_mega_col_width', 'default'),
(3170, 6841, '_menu_item_stm_mega_cols_inside', 'default'),
(3171, 6841, '_menu_item_stm_mega_second_col_width', 'default'),
(3172, 6841, '_menu_item_stm_menu_icon', 'fa fa-th-large'),
(3173, 6842, '_menu_item_type', 'post_type'),
(3174, 6842, '_menu_item_menu_item_parent', '6480'),
(3175, 6842, '_menu_item_object_id', '1532'),
(3176, 6842, '_menu_item_object', 'page'),
(3177, 6842, '_menu_item_target', ''),
(3178, 6842, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3179, 6842, '_menu_item_xfn', ''),
(3180, 6842, '_menu_item_url', ''),
(3181, 6842, '_menu_item_stm_mega', 'disabled'),
(3182, 6842, '_menu_item_stm_mega_cols', 'default'),
(3183, 6842, '_menu_item_stm_mega_col_width', 'default'),
(3184, 6842, '_menu_item_stm_mega_cols_inside', 'default'),
(3185, 6842, '_menu_item_stm_mega_second_col_width', 'default'),
(3186, 6842, '_menu_item_stm_menu_icon', 'fa fa-list-ul'),
(3187, 6843, '_menu_item_type', 'post_type'),
(3188, 6843, '_menu_item_menu_item_parent', '6480'),
(3189, 6843, '_menu_item_object_id', '1508'),
(3190, 6843, '_menu_item_object', 'page'),
(3191, 6843, '_menu_item_target', ''),
(3192, 6843, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3193, 6843, '_menu_item_xfn', ''),
(3194, 6843, '_menu_item_url', ''),
(3195, 6843, '_menu_item_stm_mega', 'disabled'),
(3196, 6843, '_menu_item_stm_mega_cols', 'default'),
(3197, 6843, '_menu_item_stm_mega_col_width', 'default'),
(3198, 6843, '_menu_item_stm_mega_cols_inside', 'default'),
(3199, 6843, '_menu_item_stm_mega_second_col_width', 'default'),
(3200, 6843, '_menu_item_stm_menu_icon', 'fa fa-calendar-check-o'),
(3201, 6844, '_menu_item_type', 'post_type'),
(3202, 6844, '_menu_item_menu_item_parent', '6798'),
(3203, 6844, '_menu_item_object_id', '1501'),
(3204, 6844, '_menu_item_object', 'page'),
(3205, 6844, '_menu_item_target', ''),
(3206, 6844, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3207, 6844, '_menu_item_xfn', ''),
(3208, 6844, '_menu_item_url', ''),
(3209, 6844, '_menu_item_stm_mega', 'disabled'),
(3210, 6844, '_menu_item_stm_mega_cols', 'default'),
(3211, 6844, '_menu_item_stm_mega_col_width', 'default'),
(3212, 6844, '_menu_item_stm_mega_cols_inside', 'default'),
(3213, 6844, '_menu_item_stm_mega_second_col_width', 'default'),
(3214, 6845, '_menu_item_type', 'post_type'),
(3215, 6845, '_menu_item_menu_item_parent', '6798'),
(3216, 6845, '_menu_item_object_id', '1503'),
(3217, 6845, '_menu_item_object', 'page'),
(3218, 6845, '_menu_item_target', ''),
(3219, 6845, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3220, 6845, '_menu_item_xfn', ''),
(3221, 6845, '_menu_item_url', ''),
(3222, 6845, '_menu_item_stm_mega', 'disabled'),
(3223, 6845, '_menu_item_stm_mega_cols', 'default'),
(3224, 6845, '_menu_item_stm_mega_col_width', 'default'),
(3225, 6845, '_menu_item_stm_mega_cols_inside', 'default'),
(3226, 6845, '_menu_item_stm_mega_second_col_width', 'default'),
(3227, 6846, '_menu_item_type', 'post_type'),
(3228, 6846, '_menu_item_menu_item_parent', '6798'),
(3229, 6846, '_menu_item_object_id', '6483'),
(3230, 6846, '_menu_item_object', 'page'),
(3231, 6846, '_menu_item_target', ''),
(3232, 6846, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3233, 6846, '_menu_item_xfn', ''),
(3234, 6846, '_menu_item_url', ''),
(3235, 6846, '_menu_item_stm_mega', 'disabled'),
(3236, 6846, '_menu_item_stm_mega_cols', 'default'),
(3237, 6846, '_menu_item_stm_mega_col_width', 'default'),
(3238, 6846, '_menu_item_stm_mega_cols_inside', 'default'),
(3239, 6846, '_menu_item_stm_mega_second_col_width', 'default'),
(3240, 6847, '_menu_item_type', 'post_type'),
(3241, 6847, '_menu_item_menu_item_parent', '0'),
(3242, 6847, '_menu_item_object_id', '1535'),
(3243, 6847, '_menu_item_object', 'page'),
(3244, 6847, '_menu_item_target', ''),
(3245, 6847, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3246, 6847, '_menu_item_xfn', ''),
(3247, 6847, '_menu_item_url', ''),
(3248, 6847, '_menu_item_stm_mega', 'disabled'),
(3249, 6847, '_menu_item_stm_mega_cols', 'default'),
(3250, 6847, '_menu_item_stm_mega_col_width', 'default'),
(3251, 6847, '_menu_item_stm_mega_cols_inside', 'default'),
(3252, 6847, '_menu_item_stm_mega_second_col_width', 'default'),
(3253, 6848, '_menu_item_type', 'post_type'),
(3254, 6848, '_menu_item_menu_item_parent', '6847'),
(3255, 6848, '_menu_item_object_id', '1525'),
(3256, 6848, '_menu_item_object', 'stm_portfolio'),
(3257, 6848, '_menu_item_target', ''),
(3258, 6848, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3259, 6848, '_menu_item_xfn', ''),
(3260, 6848, '_menu_item_url', ''),
(3261, 6848, '_menu_item_stm_mega', 'disabled'),
(3262, 6848, '_menu_item_stm_mega_cols', 'default'),
(3263, 6848, '_menu_item_stm_mega_col_width', 'default'),
(3264, 6848, '_menu_item_stm_mega_cols_inside', 'default'),
(3265, 6848, '_menu_item_stm_mega_second_col_width', 'default'),
(3266, 6849, '_menu_item_type', 'post_type'),
(3267, 6849, '_menu_item_menu_item_parent', '6847'),
(3268, 6849, '_menu_item_object_id', '1524'),
(3269, 6849, '_menu_item_object', 'stm_portfolio'),
(3270, 6849, '_menu_item_target', ''),
(3271, 6849, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3272, 6849, '_menu_item_xfn', ''),
(3273, 6849, '_menu_item_url', ''),
(3274, 6849, '_menu_item_stm_mega', 'disabled'),
(3275, 6849, '_menu_item_stm_mega_cols', 'default'),
(3276, 6849, '_menu_item_stm_mega_col_width', 'default'),
(3277, 6849, '_menu_item_stm_mega_cols_inside', 'default'),
(3278, 6849, '_menu_item_stm_mega_second_col_width', 'default'),
(3279, 6850, '_menu_item_type', 'post_type'),
(3280, 6850, '_menu_item_menu_item_parent', '6847'),
(3281, 6850, '_menu_item_object_id', '1522'),
(3282, 6850, '_menu_item_object', 'stm_portfolio'),
(3283, 6850, '_menu_item_target', ''),
(3284, 6850, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3285, 6850, '_menu_item_xfn', ''),
(3286, 6850, '_menu_item_url', ''),
(3287, 6850, '_menu_item_stm_mega', 'disabled'),
(3288, 6850, '_menu_item_stm_mega_cols', 'default'),
(3289, 6850, '_menu_item_stm_mega_col_width', 'default'),
(3290, 6850, '_menu_item_stm_mega_cols_inside', 'default'),
(3291, 6850, '_menu_item_stm_mega_second_col_width', 'default'),
(3292, 6851, '_menu_item_type', 'post_type'),
(3293, 6851, '_menu_item_menu_item_parent', '6809'),
(3294, 6851, '_menu_item_object_id', '1483'),
(3295, 6851, '_menu_item_object', 'page'),
(3296, 6851, '_menu_item_target', ''),
(3297, 6851, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3298, 6851, '_menu_item_xfn', ''),
(3299, 6851, '_menu_item_url', ''),
(3300, 6851, '_menu_item_stm_mega', 'disabled'),
(3301, 6851, '_menu_item_stm_mega_cols', 'default'),
(3302, 6851, '_menu_item_stm_mega_col_width', 'default'),
(3303, 6851, '_menu_item_stm_mega_cols_inside', 'default'),
(3304, 6851, '_menu_item_stm_mega_second_col_width', 'default'),
(3305, 6852, '_menu_item_type', 'post_type'),
(3306, 6852, '_menu_item_menu_item_parent', '6809'),
(3307, 6852, '_menu_item_object_id', '1480'),
(3308, 6852, '_menu_item_object', 'page'),
(3309, 6852, '_menu_item_target', ''),
(3310, 6852, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3311, 6852, '_menu_item_xfn', ''),
(3312, 6852, '_menu_item_url', ''),
(3313, 6852, '_menu_item_stm_mega', 'disabled'),
(3314, 6852, '_menu_item_stm_mega_cols', 'default'),
(3315, 6852, '_menu_item_stm_mega_col_width', 'default'),
(3316, 6852, '_menu_item_stm_mega_cols_inside', 'default'),
(3317, 6852, '_menu_item_stm_mega_second_col_width', 'default'),
(3318, 6853, '_menu_item_type', 'post_type'),
(3319, 6853, '_menu_item_menu_item_parent', '6809'),
(3320, 6853, '_menu_item_object_id', '1478'),
(3321, 6853, '_menu_item_object', 'page'),
(3322, 6853, '_menu_item_target', ''),
(3323, 6853, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3324, 6853, '_menu_item_xfn', ''),
(3325, 6853, '_menu_item_url', ''),
(3326, 6853, '_menu_item_stm_mega', 'disabled'),
(3327, 6853, '_menu_item_stm_mega_cols', 'default'),
(3328, 6853, '_menu_item_stm_mega_col_width', 'default'),
(3329, 6853, '_menu_item_stm_mega_cols_inside', 'default'),
(3330, 6853, '_menu_item_stm_mega_second_col_width', 'default'),
(3331, 6854, '_menu_item_type', 'post_type'),
(3332, 6854, '_menu_item_menu_item_parent', '6809'),
(3333, 6854, '_menu_item_object_id', '1529'),
(3334, 6854, '_menu_item_object', 'page'),
(3335, 6854, '_menu_item_target', ''),
(3336, 6854, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3337, 6854, '_menu_item_xfn', ''),
(3338, 6854, '_menu_item_url', ''),
(3339, 6854, '_menu_item_stm_mega', 'disabled'),
(3340, 6854, '_menu_item_stm_mega_cols', 'default'),
(3341, 6854, '_menu_item_stm_mega_col_width', 'default'),
(3342, 6854, '_menu_item_stm_mega_cols_inside', 'default'),
(3343, 6854, '_menu_item_stm_mega_second_col_width', 'default'),
(3344, 6855, '_menu_item_type', 'post_type'),
(3345, 6855, '_menu_item_menu_item_parent', '6809'),
(3346, 6855, '_menu_item_object_id', '6484'),
(3347, 6855, '_menu_item_object', 'page'),
(3348, 6855, '_menu_item_target', ''),
(3349, 6855, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3350, 6855, '_menu_item_xfn', ''),
(3351, 6855, '_menu_item_url', ''),
(3352, 6855, '_menu_item_stm_mega', 'disabled'),
(3353, 6855, '_menu_item_stm_mega_cols', 'default'),
(3354, 6855, '_menu_item_stm_mega_col_width', 'default'),
(3355, 6855, '_menu_item_stm_mega_cols_inside', 'default'),
(3356, 6855, '_menu_item_stm_mega_second_col_width', 'default'),
(3357, 6856, '_menu_item_type', 'post_type'),
(3358, 6856, '_menu_item_menu_item_parent', '0'),
(3359, 6856, '_menu_item_object_id', '601'),
(3360, 6856, '_menu_item_object', 'page'),
(3361, 6856, '_menu_item_target', ''),
(3362, 6856, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3363, 6856, '_menu_item_xfn', ''),
(3364, 6856, '_menu_item_url', ''),
(3365, 6856, '_menu_item_stm_mega', 'disabled'),
(3366, 6856, '_menu_item_stm_mega_cols', 'default'),
(3367, 6856, '_menu_item_stm_mega_col_width', 'default'),
(3368, 6856, '_menu_item_stm_mega_cols_inside', 'default'),
(3369, 6856, '_menu_item_stm_mega_second_col_width', 'default'),
(3370, 6857, '_menu_item_type', 'post_type'),
(3371, 6857, '_menu_item_menu_item_parent', '6810'),
(3372, 6857, '_menu_item_object_id', '1647'),
(3373, 6857, '_menu_item_object', 'page'),
(3374, 6857, '_menu_item_target', ''),
(3375, 6857, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3376, 6857, '_menu_item_xfn', ''),
(3377, 6857, '_menu_item_url', ''),
(3378, 6857, '_menu_item_stm_mega', 'disabled'),
(3379, 6857, '_menu_item_stm_mega_cols', 'default'),
(3380, 6857, '_menu_item_stm_mega_col_width', 'default'),
(3381, 6857, '_menu_item_stm_mega_cols_inside', 'default'),
(3382, 6857, '_menu_item_stm_mega_second_col_width', 'default'),
(3383, 6858, '_menu_item_type', 'post_type'),
(3384, 6858, '_menu_item_menu_item_parent', '6475'),
(3385, 6858, '_menu_item_object_id', '6483'),
(3386, 6858, '_menu_item_object', 'page'),
(3387, 6858, '_menu_item_target', ''),
(3388, 6858, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3389, 6858, '_menu_item_xfn', ''),
(3390, 6858, '_menu_item_url', ''),
(3391, 6858, '_menu_item_stm_mega', 'disabled'),
(3392, 6858, '_menu_item_stm_mega_cols', 'default'),
(3393, 6858, '_menu_item_stm_mega_col_width', 'default'),
(3394, 6858, '_menu_item_stm_mega_cols_inside', 'default'),
(3395, 6858, '_menu_item_stm_mega_second_col_width', 'default'),
(3396, 6859, '_menu_item_type', 'post_type'),
(3397, 6859, '_menu_item_menu_item_parent', '6858'),
(3398, 6859, '_menu_item_object_id', '6483'),
(3399, 6859, '_menu_item_object', 'page'),
(3400, 6859, '_menu_item_target', ''),
(3401, 6859, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3402, 6859, '_menu_item_xfn', ''),
(3403, 6859, '_menu_item_url', ''),
(3404, 6859, '_menu_item_stm_mega', 'disabled'),
(3405, 6859, '_menu_item_stm_mega_cols', 'default'),
(3406, 6859, '_menu_item_stm_mega_col_width', 'default'),
(3407, 6859, '_menu_item_stm_mega_cols_inside', 'default'),
(3408, 6859, '_menu_item_stm_mega_second_col_width', 'default'),
(3409, 6859, '_menu_item_stm_menu_image', '5588'),
(3410, 6859, '_menu_item_stm_mega_textarea', 'Consulting is a global consultbe- gan our operations a fewd...'),
(3411, 6860, '_menu_item_type', 'post_type'),
(3412, 6860, '_menu_item_menu_item_parent', '6475'),
(3413, 6860, '_menu_item_object_id', '6484'),
(3414, 6860, '_menu_item_object', 'page'),
(3415, 6860, '_menu_item_target', ''),
(3416, 6860, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3417, 6860, '_menu_item_xfn', ''),
(3418, 6860, '_menu_item_url', ''),
(3419, 6860, '_menu_item_stm_mega', 'disabled'),
(3420, 6860, '_menu_item_stm_mega_cols', 'default'),
(3421, 6860, '_menu_item_stm_mega_col_width', 'default'),
(3422, 6860, '_menu_item_stm_mega_cols_inside', 'default'),
(3423, 6860, '_menu_item_stm_mega_second_col_width', 'default'),
(3424, 6861, '_menu_item_type', 'post_type'),
(3425, 6861, '_menu_item_menu_item_parent', '6480'),
(3426, 6861, '_menu_item_object_id', '835'),
(3427, 6861, '_menu_item_object', 'page'),
(3428, 6861, '_menu_item_target', ''),
(3429, 6861, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3430, 6861, '_menu_item_xfn', ''),
(3431, 6861, '_menu_item_url', ''),
(3432, 6861, '_menu_item_stm_mega', 'disabled'),
(3433, 6861, '_menu_item_stm_mega_cols', 'default'),
(3434, 6861, '_menu_item_stm_mega_col_width', 'default'),
(3435, 6861, '_menu_item_stm_mega_cols_inside', 'default'),
(3436, 6861, '_menu_item_stm_mega_second_col_width', 'default'),
(3437, 6861, '_menu_item_stm_menu_icon', 'fa fa-shopping-cart'),
(3438, 6862, '_menu_item_type', 'post_type'),
(3439, 6862, '_menu_item_menu_item_parent', '0'),
(3440, 6862, '_menu_item_object_id', '390'),
(3441, 6862, '_menu_item_object', 'page'),
(3442, 6862, '_menu_item_target', ''),
(3443, 6862, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3444, 6862, '_menu_item_xfn', ''),
(3445, 6862, '_menu_item_url', ''),
(3446, 6863, '_menu_item_type', 'post_type'),
(3447, 6863, '_menu_item_menu_item_parent', '6798'),
(3448, 6863, '_menu_item_object_id', '6238'),
(3449, 6863, '_menu_item_object', 'page'),
(3450, 6863, '_menu_item_target', ''),
(3451, 6863, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3452, 6863, '_menu_item_xfn', ''),
(3453, 6863, '_menu_item_url', ''),
(3454, 6863, '_menu_item_stm_mega', 'disabled'),
(3455, 6863, '_menu_item_stm_mega_cols', 'default'),
(3456, 6863, '_menu_item_stm_mega_col_width', 'default'),
(3457, 6863, '_menu_item_stm_mega_cols_inside', 'default'),
(3458, 6863, '_menu_item_stm_mega_second_col_width', 'default'),
(3459, 6864, '_menu_item_type', 'post_type'),
(3460, 6864, '_menu_item_menu_item_parent', '6856'),
(3461, 6864, '_menu_item_object_id', '6326'),
(3462, 6864, '_menu_item_object', 'page'),
(3463, 6864, '_menu_item_target', ''),
(3464, 6864, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3465, 6864, '_menu_item_xfn', ''),
(3466, 6864, '_menu_item_url', ''),
(3467, 6864, '_menu_item_stm_mega', 'disabled'),
(3468, 6864, '_menu_item_stm_mega_cols', 'default'),
(3469, 6864, '_menu_item_stm_mega_col_width', 'default'),
(3470, 6864, '_menu_item_stm_mega_cols_inside', 'default'),
(3471, 6864, '_menu_item_stm_mega_second_col_width', 'default'),
(3472, 6865, '_menu_item_type', 'post_type'),
(3473, 6865, '_menu_item_menu_item_parent', '6856'),
(3474, 6865, '_menu_item_object_id', '6318'),
(3475, 6865, '_menu_item_object', 'page'),
(3476, 6865, '_menu_item_target', ''),
(3477, 6865, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3478, 6865, '_menu_item_xfn', ''),
(3479, 6865, '_menu_item_url', ''),
(3480, 6865, '_menu_item_stm_mega', 'disabled'),
(3481, 6865, '_menu_item_stm_mega_cols', 'default'),
(3482, 6865, '_menu_item_stm_mega_col_width', 'default'),
(3483, 6865, '_menu_item_stm_mega_cols_inside', 'default'),
(3484, 6865, '_menu_item_stm_mega_second_col_width', 'default'),
(3485, 6866, '_menu_item_type', 'post_type'),
(3486, 6866, '_menu_item_menu_item_parent', '6480'),
(3487, 6866, '_menu_item_object_id', '6212'),
(3488, 6866, '_menu_item_object', 'page'),
(3489, 6866, '_menu_item_target', ''),
(3490, 6866, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3491, 6866, '_menu_item_xfn', ''),
(3492, 6866, '_menu_item_url', ''),
(3493, 6866, '_menu_item_stm_mega', 'disabled'),
(3494, 6866, '_menu_item_stm_mega_cols', 'default'),
(3495, 6866, '_menu_item_stm_mega_col_width', 'default'),
(3496, 6866, '_menu_item_stm_mega_cols_inside', 'default'),
(3497, 6866, '_menu_item_stm_mega_second_col_width', 'default'),
(3498, 6866, '_menu_item_stm_menu_icon', 'fa fa-hourglass-half'),
(3499, 6867, '_menu_item_type', 'post_type'),
(3500, 6867, '_menu_item_menu_item_parent', '6480'),
(3501, 6867, '_menu_item_object_id', '6333'),
(3502, 6867, '_menu_item_object', 'page'),
(3503, 6867, '_menu_item_target', ''),
(3504, 6867, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3505, 6867, '_menu_item_xfn', ''),
(3506, 6867, '_menu_item_url', ''),
(3507, 6867, '_menu_item_stm_mega', 'disabled'),
(3508, 6867, '_menu_item_stm_mega_cols', 'default'),
(3509, 6867, '_menu_item_stm_mega_col_width', 'default'),
(3510, 6867, '_menu_item_stm_mega_cols_inside', 'default'),
(3511, 6867, '_menu_item_stm_mega_second_col_width', 'default'),
(3512, 6867, '_menu_item_stm_menu_icon', 'fa fa-calculator'),
(3513, 6868, '_menu_item_type', 'post_type'),
(3514, 6868, '_menu_item_menu_item_parent', '6794'),
(3515, 6868, '_menu_item_object_id', '6168'),
(3516, 6868, '_menu_item_object', 'page'),
(3517, 6868, '_menu_item_target', ''),
(3518, 6868, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3519, 6868, '_menu_item_xfn', ''),
(3520, 6868, '_menu_item_url', ''),
(3521, 6868, '_menu_item_stm_mega', 'disabled'),
(3522, 6868, '_menu_item_stm_mega_cols', 'default'),
(3523, 6868, '_menu_item_stm_mega_col_width', 'default'),
(3524, 6868, '_menu_item_stm_mega_cols_inside', 'default'),
(3525, 6868, '_menu_item_stm_mega_second_col_width', 'default'),
(3526, 6869, '_menu_item_type', 'post_type'),
(3527, 6869, '_menu_item_menu_item_parent', '6802'),
(3528, 6869, '_menu_item_object_id', '6180'),
(3529, 6869, '_menu_item_object', 'page'),
(3530, 6869, '_menu_item_target', ''),
(3531, 6869, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3532, 6869, '_menu_item_xfn', ''),
(3533, 6869, '_menu_item_url', ''),
(3534, 6869, '_menu_item_stm_mega', 'disabled'),
(3535, 6869, '_menu_item_stm_mega_cols', 'default'),
(3536, 6869, '_menu_item_stm_mega_col_width', 'default'),
(3537, 6869, '_menu_item_stm_mega_cols_inside', 'default'),
(3538, 6869, '_menu_item_stm_mega_second_col_width', 'default'),
(3539, 6870, '_menu_item_type', 'post_type'),
(3540, 6870, '_menu_item_menu_item_parent', '6476'),
(3541, 6870, '_menu_item_object_id', '6297'),
(3542, 6870, '_menu_item_object', 'page'),
(3543, 6870, '_menu_item_target', ''),
(3544, 6870, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3545, 6870, '_menu_item_xfn', ''),
(3546, 6870, '_menu_item_url', ''),
(3547, 6870, '_menu_item_stm_mega', 'disabled'),
(3548, 6870, '_menu_item_stm_mega_cols', 'default'),
(3549, 6870, '_menu_item_stm_mega_col_width', 'default'),
(3550, 6870, '_menu_item_stm_mega_cols_inside', 'default'),
(3551, 6870, '_menu_item_stm_mega_second_col_width', 'default'),
(3552, 6871, '_menu_item_type', 'post_type'),
(3553, 6871, '_menu_item_menu_item_parent', '6476'),
(3554, 6871, '_menu_item_object_id', '6285'),
(3555, 6871, '_menu_item_object', 'page'),
(3556, 6871, '_menu_item_target', ''),
(3557, 6871, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3558, 6871, '_menu_item_xfn', ''),
(3559, 6871, '_menu_item_url', ''),
(3560, 6871, '_menu_item_stm_mega', 'disabled'),
(3561, 6871, '_menu_item_stm_mega_cols', 'default'),
(3562, 6871, '_menu_item_stm_mega_col_width', 'default'),
(3563, 6871, '_menu_item_stm_mega_cols_inside', 'default'),
(3564, 6871, '_menu_item_stm_mega_second_col_width', 'default'),
(3565, 6872, '_menu_item_type', 'post_type'),
(3566, 6872, '_menu_item_menu_item_parent', '6830'),
(3567, 6872, '_menu_item_object_id', '6195'),
(3568, 6872, '_menu_item_object', 'page'),
(3569, 6872, '_menu_item_target', ''),
(3570, 6872, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3571, 6872, '_menu_item_xfn', ''),
(3572, 6872, '_menu_item_url', ''),
(3573, 6872, '_menu_item_stm_mega', 'disabled'),
(3574, 6872, '_menu_item_stm_mega_cols', 'default'),
(3575, 6872, '_menu_item_stm_mega_col_width', 'default'),
(3576, 6872, '_menu_item_stm_mega_cols_inside', 'default'),
(3577, 6872, '_menu_item_stm_mega_second_col_width', 'default'),
(3578, 6873, '_menu_item_type', 'post_type'),
(3579, 6873, '_menu_item_menu_item_parent', '6856'),
(3580, 6873, '_menu_item_object_id', '6306'),
(3581, 6873, '_menu_item_object', 'page'),
(3582, 6873, '_menu_item_target', ''),
(3583, 6873, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3584, 6873, '_menu_item_xfn', ''),
(3585, 6873, '_menu_item_url', ''),
(3586, 6873, '_menu_item_stm_mega', 'disabled'),
(3587, 6873, '_menu_item_stm_mega_cols', 'default'),
(3588, 6873, '_menu_item_stm_mega_col_width', 'default'),
(3589, 6873, '_menu_item_stm_mega_cols_inside', 'default'),
(3590, 6873, '_menu_item_stm_mega_second_col_width', 'default'),
(3591, 6874, '_menu_item_type', 'post_type'),
(3592, 6874, '_menu_item_menu_item_parent', '6810'),
(3593, 6874, '_menu_item_object_id', '6122'),
(3594, 6874, '_menu_item_object', 'page'),
(3595, 6874, '_menu_item_target', ''),
(3596, 6874, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3597, 6874, '_menu_item_xfn', ''),
(3598, 6874, '_menu_item_url', ''),
(3599, 6874, '_menu_item_stm_mega', 'disabled'),
(3600, 6874, '_menu_item_stm_mega_cols', 'default'),
(3601, 6874, '_menu_item_stm_mega_col_width', 'default'),
(3602, 6874, '_menu_item_stm_mega_cols_inside', 'default'),
(3603, 6874, '_menu_item_stm_mega_second_col_width', 'default'),
(3604, 6875, '_menu_item_type', 'post_type'),
(3605, 6875, '_menu_item_menu_item_parent', '6810'),
(3606, 6875, '_menu_item_object_id', '6137'),
(3607, 6875, '_menu_item_object', 'page'),
(3608, 6875, '_menu_item_target', ''),
(3609, 6875, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3610, 6875, '_menu_item_xfn', ''),
(3611, 6875, '_menu_item_url', ''),
(3612, 6875, '_menu_item_stm_mega', 'disabled'),
(3613, 6875, '_menu_item_stm_mega_cols', 'default'),
(3614, 6875, '_menu_item_stm_mega_col_width', 'default'),
(3615, 6875, '_menu_item_stm_mega_cols_inside', 'default'),
(3616, 6875, '_menu_item_stm_mega_second_col_width', 'default'),
(3617, 6876, '_menu_item_type', 'post_type'),
(3618, 6876, '_menu_item_menu_item_parent', '6810'),
(3619, 6876, '_menu_item_object_id', '6206'),
(3620, 6876, '_menu_item_object', 'page'),
(3621, 6876, '_menu_item_target', ''),
(3622, 6876, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3623, 6876, '_menu_item_xfn', ''),
(3624, 6876, '_menu_item_url', ''),
(3625, 6876, '_menu_item_stm_mega', 'disabled'),
(3626, 6876, '_menu_item_stm_mega_cols', 'default'),
(3627, 6876, '_menu_item_stm_mega_col_width', 'default'),
(3628, 6876, '_menu_item_stm_mega_cols_inside', 'default'),
(3629, 6876, '_menu_item_stm_mega_second_col_width', 'default'),
(3630, 6877, '_menu_item_type', 'post_type'),
(3631, 6877, '_menu_item_menu_item_parent', '6810'),
(3632, 6877, '_menu_item_object_id', '6266'),
(3633, 6877, '_menu_item_object', 'page'),
(3634, 6877, '_menu_item_target', ''),
(3635, 6877, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3636, 6877, '_menu_item_xfn', ''),
(3637, 6877, '_menu_item_url', ''),
(3638, 6877, '_menu_item_stm_mega', 'disabled'),
(3639, 6877, '_menu_item_stm_mega_cols', 'default'),
(3640, 6877, '_menu_item_stm_mega_col_width', 'default'),
(3641, 6877, '_menu_item_stm_mega_cols_inside', 'default'),
(3642, 6877, '_menu_item_stm_mega_second_col_width', 'default'),
(3643, 6878, '_menu_item_type', 'post_type'),
(3644, 6878, '_menu_item_menu_item_parent', '6810'),
(3645, 6878, '_menu_item_object_id', '6228'),
(3646, 6878, '_menu_item_object', 'page'),
(3647, 6878, '_menu_item_target', ''),
(3648, 6878, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3649, 6878, '_menu_item_xfn', ''),
(3650, 6878, '_menu_item_url', ''),
(3651, 6878, '_menu_item_stm_mega', 'disabled'),
(3652, 6878, '_menu_item_stm_mega_cols', 'default'),
(3653, 6878, '_menu_item_stm_mega_col_width', 'default'),
(3654, 6878, '_menu_item_stm_mega_cols_inside', 'default'),
(3655, 6878, '_menu_item_stm_mega_second_col_width', 'default'),
(3656, 6879, '_menu_item_type', 'post_type'),
(3657, 6879, '_menu_item_menu_item_parent', '6476'),
(3658, 6879, '_menu_item_object_id', '738'),
(3659, 6879, '_menu_item_object', 'post'),
(3660, 6879, '_menu_item_target', ''),
(3661, 6879, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3662, 6879, '_menu_item_xfn', ''),
(3663, 6879, '_menu_item_url', ''),
(3664, 6879, '_menu_item_stm_mega', 'disabled'),
(3665, 6879, '_menu_item_stm_mega_cols', 'default'),
(3666, 6879, '_menu_item_stm_mega_col_width', 'default'),
(3667, 6879, '_menu_item_stm_mega_cols_inside', 'default'),
(3668, 6879, '_menu_item_stm_mega_second_col_width', 'default'),
(3669, 6880, '_menu_item_type', 'post_type'),
(3670, 6880, '_menu_item_menu_item_parent', '6476'),
(3671, 6880, '_menu_item_object_id', '2202'),
(3672, 6880, '_menu_item_object', 'post'),
(3673, 6880, '_menu_item_target', ''),
(3674, 6880, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3675, 6880, '_menu_item_xfn', ''),
(3676, 6880, '_menu_item_url', ''),
(3677, 6880, '_menu_item_stm_mega', 'disabled'),
(3678, 6880, '_menu_item_stm_mega_cols', 'default'),
(3679, 6880, '_menu_item_stm_mega_col_width', 'default'),
(3680, 6880, '_menu_item_stm_mega_cols_inside', 'default'),
(3681, 6880, '_menu_item_stm_mega_second_col_width', 'default'),
(3682, 6881, '_menu_item_type', 'post_type'),
(3683, 6881, '_menu_item_menu_item_parent', '6847'),
(3684, 6881, '_menu_item_object_id', '6273'),
(3685, 6881, '_menu_item_object', 'page'),
(3686, 6881, '_menu_item_target', ''),
(3687, 6881, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3688, 6881, '_menu_item_xfn', ''),
(3689, 6881, '_menu_item_url', ''),
(3690, 6881, '_menu_item_stm_mega', 'disabled'),
(3691, 6881, '_menu_item_stm_mega_cols', 'default'),
(3692, 6881, '_menu_item_stm_mega_col_width', 'default'),
(3693, 6881, '_menu_item_stm_mega_cols_inside', 'default'),
(3694, 6881, '_menu_item_stm_mega_second_col_width', 'default'),
(3695, 6882, '_menu_item_type', 'post_type'),
(3696, 6882, '_menu_item_menu_item_parent', '6802'),
(3697, 6882, '_menu_item_object_id', '434'),
(3698, 6882, '_menu_item_object', 'stm_careers'),
(3699, 6882, '_menu_item_target', ''),
(3700, 6882, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3701, 6882, '_menu_item_xfn', ''),
(3702, 6882, '_menu_item_url', ''),
(3703, 6882, '_menu_item_stm_mega', 'disabled'),
(3704, 6882, '_menu_item_stm_mega_cols', 'default'),
(3705, 6882, '_menu_item_stm_mega_col_width', 'default'),
(3706, 6882, '_menu_item_stm_mega_cols_inside', 'default'),
(3707, 6882, '_menu_item_stm_mega_second_col_width', 'default'),
(3708, 6883, '_menu_item_type', 'post_type'),
(3709, 6883, '_menu_item_menu_item_parent', '6856'),
(3710, 6883, '_menu_item_object_id', '608'),
(3711, 6883, '_menu_item_object', 'stm_works'),
(3712, 6883, '_menu_item_target', ''),
(3713, 6883, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3714, 6883, '_menu_item_xfn', ''),
(3715, 6883, '_menu_item_url', ''),
(3716, 6883, '_menu_item_stm_mega', 'disabled'),
(3717, 6883, '_menu_item_stm_mega_cols', 'default'),
(3718, 6883, '_menu_item_stm_mega_col_width', 'default'),
(3719, 6883, '_menu_item_stm_mega_cols_inside', 'default'),
(3720, 6883, '_menu_item_stm_mega_second_col_width', 'default'),
(3721, 6884, '_menu_item_type', 'post_type'),
(3722, 6884, '_menu_item_menu_item_parent', '6856'),
(3723, 6884, '_menu_item_object_id', '606'),
(3724, 6884, '_menu_item_object', 'stm_works'),
(3725, 6884, '_menu_item_target', ''),
(3726, 6884, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3727, 6884, '_menu_item_xfn', ''),
(3728, 6884, '_menu_item_url', ''),
(3729, 6884, '_menu_item_stm_mega', 'disabled'),
(3730, 6884, '_menu_item_stm_mega_cols', 'default'),
(3731, 6884, '_menu_item_stm_mega_col_width', 'default'),
(3732, 6884, '_menu_item_stm_mega_cols_inside', 'default'),
(3733, 6884, '_menu_item_stm_mega_second_col_width', 'default'),
(3734, 6885, '_menu_item_type', 'post_type'),
(3735, 6885, '_menu_item_menu_item_parent', '6856'),
(3736, 6885, '_menu_item_object_id', '600'),
(3737, 6885, '_menu_item_object', 'stm_works'),
(3738, 6885, '_menu_item_target', ''),
(3739, 6885, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3740, 6885, '_menu_item_xfn', ''),
(3741, 6885, '_menu_item_url', ''),
(3742, 6885, '_menu_item_stm_mega', 'disabled'),
(3743, 6885, '_menu_item_stm_mega_cols', 'default'),
(3744, 6885, '_menu_item_stm_mega_col_width', 'default'),
(3745, 6885, '_menu_item_stm_mega_cols_inside', 'default'),
(3746, 6885, '_menu_item_stm_mega_second_col_width', 'default'),
(3747, 6886, '_menu_item_type', 'post_type'),
(3748, 6886, '_menu_item_menu_item_parent', '6479'),
(3749, 6886, '_menu_item_object_id', '6786'),
(3750, 6886, '_menu_item_object', 'page'),
(3751, 6886, '_menu_item_target', ''),
(3752, 6886, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3753, 6886, '_menu_item_xfn', ''),
(3754, 6886, '_menu_item_url', ''),
(3755, 6886, '_menu_item_stm_mega', 'disabled'),
(3756, 6886, '_menu_item_stm_mega_cols', 'default'),
(3757, 6886, '_menu_item_stm_mega_col_width', 'default'),
(3758, 6886, '_menu_item_stm_mega_cols_inside', 'default'),
(3759, 6886, '_menu_item_stm_mega_second_col_width', 'default'),
(3760, 6886, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(3761, 6887, '_menu_item_type', 'post_type'),
(3762, 6887, '_menu_item_menu_item_parent', '6479'),
(3763, 6887, '_menu_item_object_id', '6750'),
(3764, 6887, '_menu_item_object', 'stm-zoom'),
(3765, 6887, '_menu_item_target', ''),
(3766, 6887, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3767, 6887, '_menu_item_xfn', ''),
(3768, 6887, '_menu_item_url', ''),
(3769, 6887, '_menu_item_stm_mega', 'disabled'),
(3770, 6887, '_menu_item_stm_mega_cols', 'default'),
(3771, 6887, '_menu_item_stm_mega_col_width', 'default'),
(3772, 6887, '_menu_item_stm_mega_cols_inside', 'default'),
(3773, 6887, '_menu_item_stm_mega_second_col_width', 'default'),
(3774, 6887, '_menu_item_stm_menu_icon', 'fa fa-arrow-circle-right'),
(3775, 6888, '_wp_attached_file', 'revslider/demo_slide_1.jpg');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3776, 6888, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:26:\"revslider/demo_slide_1.jpg\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"demo_slide_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"demo_slide_1-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"demo_slide_1-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:25:\"demo_slide_1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:22:\"demo_slide_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-900x389.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"demo_slide_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3777, 6889, '_wp_attached_file', 'revslider/demo_slide_2.jpg'),
(3778, 6889, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"revslider/demo_slide_2.jpg\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"demo_slide_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"demo_slide_2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"demo_slide_2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:25:\"demo_slide_2-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:22:\"demo_slide_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"demo_slide_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"demo_slide_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:135:\"This material is dedicated to the public domain under the Creative Commons Zero Waiver http://creativecommons.org/publicdomain/zero/1.0\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3779, 6890, '_wp_attached_file', 'revslider/about_us_slider/macbook.png'),
(3780, 6890, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:383;s:6:\"height\";i:303;s:4:\"file\";s:37:\"revslider/about_us_slider/macbook.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"macbook-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"macbook-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"macbook-300x237.png\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"macbook-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:19:\"macbook-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:19:\"macbook-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:17:\"macbook-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:19:\"macbook-320x303.png\";s:5:\"width\";i:320;s:6:\"height\";i:303;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:19:\"macbook-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:19:\"macbook-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:19:\"macbook-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"macbook-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"macbook-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3781, 6891, '_wp_attached_file', 'revslider/about_us_slider/about.jpg'),
(3782, 6891, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:834;s:6:\"height\";i:421;s:4:\"file\";s:35:\"revslider/about_us_slider/about.jpg\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"about-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"about-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"about-600x303.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"about-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"about-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"about-768x388.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:17:\"about-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:17:\"about-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:15:\"about-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:17:\"about-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:17:\"about-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:17:\"about-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:17:\"about-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"about-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"about-600x303.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"about-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3783, 6892, '_wp_attached_file', 'revslider/service_slider/services_slider.png'),
(3784, 6892, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:523;s:6:\"height\";i:264;s:4:\"file\";s:44:\"revslider/service_slider/services_slider.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"services_slider-300x264.png\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"services_slider-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"services_slider-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"services_slider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:27:\"services_slider-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:27:\"services_slider-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:25:\"services_slider-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:27:\"services_slider-320x264.png\";s:5:\"width\";i:320;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:27:\"services_slider-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:27:\"services_slider-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:27:\"services_slider-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"services_slider-300x264.png\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"services_slider-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3785, 6893, '_wp_attached_file', 'revslider/service_slider/service.jpg'),
(3786, 6893, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:407;s:4:\"file\";s:36:\"revslider/service_slider/service.jpg\";s:5:\"sizes\";a:19:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"service-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"service-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"service-600x220.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"service-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"service-1024x375.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"service-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"service-768x282.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:19:\"service-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:19:\"service-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:17:\"service-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:19:\"service-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:19:\"service-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:19:\"service-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:19:\"service-900x407.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:19:\"service-900x330.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:19:\"service-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"service-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"service-600x220.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"service-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3787, 6894, '_elementor_edit_mode', 'builder'),
(3788, 6894, '_elementor_template_type', 'kit'),
(3789, 6894, '_elementor_version', '3.1.4'),
(3790, 6895, '_menu_item_type', 'post_type'),
(3791, 6895, '_menu_item_menu_item_parent', '0'),
(3792, 6895, '_menu_item_object_id', '1071'),
(3793, 6895, '_menu_item_object', 'page'),
(3794, 6895, '_menu_item_target', ''),
(3795, 6895, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3796, 6895, '_menu_item_xfn', ''),
(3797, 6895, '_menu_item_url', ''),
(3799, 6896, '_menu_item_type', 'custom'),
(3800, 6896, '_menu_item_menu_item_parent', '0'),
(3801, 6896, '_menu_item_object_id', '6896'),
(3802, 6896, '_menu_item_object', 'custom'),
(3803, 6896, '_menu_item_target', ''),
(3804, 6896, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3805, 6896, '_menu_item_xfn', ''),
(3806, 6896, '_menu_item_url', '#'),
(3808, 6897, '_menu_item_type', 'custom'),
(3809, 6897, '_menu_item_menu_item_parent', '0'),
(3810, 6897, '_menu_item_object_id', '6897'),
(3811, 6897, '_menu_item_object', 'custom'),
(3812, 6897, '_menu_item_target', ''),
(3813, 6897, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3814, 6897, '_menu_item_xfn', ''),
(3815, 6897, '_menu_item_url', '#'),
(3826, 6899, '_menu_item_type', 'custom'),
(3827, 6899, '_menu_item_menu_item_parent', '0'),
(3828, 6899, '_menu_item_object_id', '6899'),
(3829, 6899, '_menu_item_object', 'custom'),
(3830, 6899, '_menu_item_target', ''),
(3831, 6899, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3832, 6899, '_menu_item_xfn', ''),
(3833, 6899, '_menu_item_url', '#'),
(3844, 6895, '_menu_item_stm_mega', 'disabled'),
(3845, 6895, '_menu_item_stm_mega_cols', 'default'),
(3846, 6895, '_menu_item_stm_mega_col_width', 'default'),
(3847, 6895, '_menu_item_stm_mega_cols_inside', 'default'),
(3848, 6895, '_menu_item_stm_mega_second_col_width', 'default'),
(3849, 6895, '_menu_item_stm_menu_icon', ''),
(3850, 6895, '_menu_item_stm_mega_col_width_banner', 'default'),
(3851, 6895, '_menu_item_stm_menu_image', ''),
(3852, 6895, '_menu_item_stm_mega_textarea', ''),
(3853, 6895, '_menu_item_stm_menu_bg', ''),
(3854, 6896, '_menu_item_stm_mega', 'disabled'),
(3855, 6896, '_menu_item_stm_mega_cols', 'default'),
(3856, 6896, '_menu_item_stm_mega_col_width', 'default'),
(3857, 6896, '_menu_item_stm_mega_cols_inside', 'default'),
(3858, 6896, '_menu_item_stm_mega_second_col_width', 'default'),
(3859, 6896, '_menu_item_stm_menu_icon', ''),
(3860, 6896, '_menu_item_stm_mega_col_width_banner', 'default'),
(3861, 6896, '_menu_item_stm_menu_image', ''),
(3862, 6896, '_menu_item_stm_mega_textarea', ''),
(3863, 6896, '_menu_item_stm_menu_bg', ''),
(3864, 6897, '_menu_item_stm_mega', 'disabled'),
(3865, 6897, '_menu_item_stm_mega_cols', 'default'),
(3866, 6897, '_menu_item_stm_mega_col_width', 'default'),
(3867, 6897, '_menu_item_stm_mega_cols_inside', 'default'),
(3868, 6897, '_menu_item_stm_mega_second_col_width', 'default'),
(3869, 6897, '_menu_item_stm_menu_icon', ''),
(3870, 6897, '_menu_item_stm_mega_col_width_banner', 'default'),
(3871, 6897, '_menu_item_stm_menu_image', ''),
(3872, 6897, '_menu_item_stm_mega_textarea', ''),
(3873, 6897, '_menu_item_stm_menu_bg', ''),
(3884, 6899, '_menu_item_stm_mega', 'disabled'),
(3885, 6899, '_menu_item_stm_mega_cols', 'default'),
(3886, 6899, '_menu_item_stm_mega_col_width', 'default'),
(3887, 6899, '_menu_item_stm_mega_cols_inside', 'default'),
(3888, 6899, '_menu_item_stm_mega_second_col_width', 'default'),
(3889, 6899, '_menu_item_stm_menu_icon', ''),
(3890, 6899, '_menu_item_stm_mega_col_width_banner', 'default'),
(3891, 6899, '_menu_item_stm_menu_image', ''),
(3892, 6899, '_menu_item_stm_mega_textarea', ''),
(3893, 6899, '_menu_item_stm_menu_bg', ''),
(3904, 6901, '_elementor_edit_mode', 'builder'),
(3905, 6901, '_elementor_template_type', 'kit'),
(3906, 6901, '_elementor_version', '3.1.4'),
(3907, 6894, '_wp_page_template', 'default'),
(3908, 6894, '_elementor_page_settings', 'a:2:{s:16:\"site_description\";s:12:\"Tech Pvt Ltd\";s:9:\"site_name\";s:10:\"QualStream\";}'),
(3909, 6902, '_wp_attached_file', '2019/09/qualstream-logo-website.png'),
(3910, 6902, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:184;s:6:\"height\";i:72;s:4:\"file\";s:35:\"2019/09/qualstream-logo-website.png\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"qualstream-logo-website-100x72.png\";s:5:\"width\";i:100;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"qualstream-logo-website-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"qualstream-logo-website-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"qualstream-logo-website-100x72.png\";s:5:\"width\";i:100;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3912, 6484, '_edit_lock', '1623585774:1'),
(3913, 6484, '_edit_last', '1'),
(3914, 6905, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540142522{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540174603{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(3915, 6906, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540174603{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(3916, 6907, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(3917, 6908, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(3918, 6909, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(3919, 6910, '_wp_attached_file', '2021/04/hyderabad.jpg'),
(3920, 6910, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:350;s:6:\"height\";i:330;s:4:\"file\";s:21:\"2021/04/hyderabad.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"hyderabad-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"hyderabad-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hyderabad-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hyderabad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:21:\"hyderabad-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:21:\"hyderabad-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:19:\"hyderabad-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:21:\"hyderabad-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:21:\"hyderabad-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:21:\"hyderabad-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:21:\"hyderabad-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"hyderabad-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"hyderabad-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3921, 6911, '_wp_attached_file', '2021/04/noida.jpg'),
(3922, 6911, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:350;s:6:\"height\";i:330;s:4:\"file\";s:17:\"2021/04/noida.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"noida-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"noida-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"noida-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"noida-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:17:\"noida-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:17:\"noida-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:15:\"noida-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:17:\"noida-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:17:\"noida-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:17:\"noida-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:17:\"noida-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"noida-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"noida-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3923, 6912, '_wp_attached_file', '2021/04/uk.jpg'),
(3924, 6912, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:350;s:6:\"height\";i:330;s:4:\"file\";s:14:\"2021/04/uk.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:14:\"uk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:14:\"uk-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"uk-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"uk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:14:\"uk-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:14:\"uk-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:12:\"uk-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:14:\"uk-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:14:\"uk-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:14:\"uk-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:14:\"uk-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:14:\"uk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"uk-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3925, 6913, '_wp_attached_file', '2021/04/usa.jpg'),
(3926, 6913, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:350;s:6:\"height\";i:330;s:4:\"file\";s:15:\"2021/04/usa.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"usa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"usa-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"usa-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"usa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:15:\"usa-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:15:\"usa-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:13:\"usa-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:15:\"usa-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:15:\"usa-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:15:\"usa-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:15:\"usa-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:15:\"usa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"usa-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3928, 6916, '_menu_item_type', 'post_type'),
(3929, 6916, '_menu_item_menu_item_parent', '0'),
(3930, 6916, '_menu_item_object_id', '6484'),
(3931, 6916, '_menu_item_object', 'page'),
(3932, 6916, '_menu_item_target', ''),
(3933, 6916, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3934, 6916, '_menu_item_xfn', ''),
(3935, 6916, '_menu_item_url', ''),
(3937, 6895, '_wp_old_date', '2021-04-05'),
(3938, 6896, '_wp_old_date', '2021-04-05'),
(3939, 6897, '_wp_old_date', '2021-04-05'),
(3941, 6899, '_wp_old_date', '2021-04-05'),
(3942, 6916, '_menu_item_stm_mega', 'disabled'),
(3943, 6916, '_menu_item_stm_mega_cols', 'default'),
(3944, 6916, '_menu_item_stm_mega_col_width', 'default'),
(3945, 6916, '_menu_item_stm_mega_cols_inside', 'default'),
(3946, 6916, '_menu_item_stm_mega_second_col_width', 'default'),
(3947, 6916, '_menu_item_stm_menu_icon', ''),
(3948, 6916, '_menu_item_stm_mega_col_width_banner', 'default'),
(3949, 6916, '_menu_item_stm_menu_image', ''),
(3950, 6916, '_menu_item_stm_mega_textarea', ''),
(3951, 6916, '_menu_item_stm_menu_bg', ''),
(3952, 6917, '_wp_attached_file', '2019/09/slider-1.jpg');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3953, 6917, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:20:\"2019/09/slider-1.jpg\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"slider-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"slider-1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider-1-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-1-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider-1-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider-1-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:21:\"slider-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:18:\"slider-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:20:\"slider-1-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:20:\"slider-1-900x389.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:20:\"slider-1-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"slider-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"slider-1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3956, 6919, '_wp_attached_file', '2019/09/slider-2-1.jpg'),
(3957, 6919, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:22:\"2019/09/slider-2-1.jpg\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"slider-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"slider-2-1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider-2-1-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider-2-1-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"slider-2-1-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"slider-2-1-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:23:\"slider-2-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"slider-2-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:22:\"slider-2-1-900x389.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"slider-2-1-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"slider-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"slider-2-1-600x259.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(3958, 6920, '_wpb_shortcodes_custom_css', '.vc_custom_1559553812334{background: #fde428 url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1559553869517{margin-bottom: 0px !important;}.vc_custom_1559208975584{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1559280090332{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1559304180275{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(3959, 6920, '_wpb_shortcodes_custom_css', '.vc_custom_1559553812334{background: #fde428 url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559283004167{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304798251{background: #002e5b url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1559553869517{margin-bottom: 0px !important;}.vc_custom_1559208975584{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1559280090332{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1559304180275{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(3960, 6920, '_wpb_shortcodes_custom_css', '.vc_custom_1559553812334{background: #fde428 url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559283004167{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304798251{background: #002e5b url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1559553869517{margin-bottom: 0px !important;}.vc_custom_1559208975584{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1559280090332{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1559304180275{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(3961, 6920, '_wpb_shortcodes_custom_css', '.vc_custom_1559553812334{background: #fde428 url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559283004167{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304798251{background: #002e5b url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1559553869517{margin-bottom: 0px !important;}.vc_custom_1559208975584{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1559280090332{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1559304180275{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(3962, 6920, '_wp_page_template', 'default'),
(3963, 6920, '_wpb_vc_js_status', 'true'),
(3964, 6920, 'slide_template', 'default'),
(3965, 6920, 'page_bg_repeat', 'repeat'),
(3966, 6920, 'title', 'hide'),
(3967, 6920, 'title_box_bg_repeat', 'repeat'),
(3968, 6920, 'breadcrumbs', 'show'),
(3969, 6920, 'disable_title_box', 'on'),
(3970, 6920, 'disable_title', 'on'),
(3971, 6920, 'disable_breadcrumbs', 'on'),
(3972, 6920, '_wp_page_template', 'default'),
(3973, 6920, '_icl_lang_duplicate_of', '2'),
(3974, 6920, '_wpb_vc_js_status', 'true'),
(3975, 6920, 'slide_template', 'default'),
(3976, 6920, 'page_bg_repeat', 'repeat'),
(3977, 6920, 'title', 'hide'),
(3978, 6920, 'title_box_bg_repeat', 'repeat'),
(3979, 6920, 'breadcrumbs', 'show'),
(3980, 6920, 'disable_title_box', 'on'),
(3981, 6920, 'disable_title', 'on'),
(3982, 6920, 'disable_breadcrumbs', 'on'),
(3983, 6920, '_wp_page_template', 'default'),
(3984, 6920, '_icl_lang_duplicate_of', '2'),
(3985, 6920, '_wpb_vc_js_status', 'true'),
(3986, 6920, 'slide_template', 'default'),
(3987, 6920, 'page_bg_repeat', 'repeat'),
(3988, 6920, 'title', 'hide'),
(3989, 6920, 'title_box_bg_repeat', 'repeat'),
(3990, 6920, 'breadcrumbs', 'show'),
(3991, 6920, 'disable_title_box', 'on'),
(3992, 6920, 'disable_title', 'on'),
(3993, 6920, 'disable_breadcrumbs', 'on'),
(3994, 6920, '_wpb_shortcodes_custom_css', '.vc_custom_1559553812334{background: #fde428 url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559283004167{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304798251{background: #002e5b url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}.vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}.vc_custom_1559554209030{margin-top: 15px !important;}.vc_custom_1559553869517{margin-bottom: 0px !important;}.vc_custom_1559208975584{margin-bottom: 0px !important;}.vc_custom_1559280200225{padding-left: 46px !important;}.vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}.vc_custom_1559280090332{margin-bottom: 28px !important;}.vc_custom_1559554231326{margin-top: 15px !important;}.vc_custom_1559304836998{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559305015013{margin-bottom: -20px !important;}.vc_custom_1559304180275{margin-bottom: 0px !important;}.vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}.vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1559294663117{margin-bottom: 37px !important;}.vc_custom_1559294798084{margin-bottom: 20px !important;}.vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/2016/06/placeholder.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}.vc_custom_1559294682103{margin-bottom: 52px !important;}'),
(3995, 6920, 'rs_page_bg_color', '#ffffff'),
(4022, 6922, '_wp_attached_file', '2021/04/mid-banner.jpg'),
(4023, 6922, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1349;s:6:\"height\";i:201;s:4:\"file\";s:22:\"2021/04/mid-banner.jpg\";s:5:\"sizes\";a:20:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"mid-banner-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"mid-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"mid-banner-600x89.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"mid-banner-300x45.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"mid-banner-1024x153.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mid-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"mid-banner-768x114.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-350x201.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-350x201.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:23:\"mid-banner-1110x201.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"mid-banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-320x201.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:22:\"mid-banner-900x201.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:22:\"mid-banner-900x134.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"mid-banner-358x201.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"mid-banner-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"mid-banner-600x89.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"mid-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4030, 6932, '_wp_attached_file', '2021/04/side-image.jpg'),
(4031, 6932, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:540;s:6:\"height\";i:406;s:4:\"file\";s:22:\"2021/04/side-image.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"side-image-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"side-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"side-image-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"side-image-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"side-image-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"side-image-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"side-image-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"side-image-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"side-image-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"side-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"side-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"side-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"side-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4040, 6941, '_wp_attached_file', '2021/04/middle-banner.jpg'),
(4041, 6941, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2021/04/middle-banner.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"middle-banner-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"middle-banner-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"middle-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"middle-banner-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"middle-banner-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:26:\"middle-banner-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:23:\"middle-banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:25:\"middle-banner-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:25:\"middle-banner-900x469.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:25:\"middle-banner-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"middle-banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"middle-banner-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"middle-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"middle-banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"middle-banner-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"middle-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4042, 1, '_edit_lock', '1617707152:1'),
(4043, 738, '_edit_lock', '1617706969:1'),
(4044, 6945, '_wp_attached_file', '2019/12/infrastructure.jpg'),
(4045, 6945, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:442;s:4:\"file\";s:26:\"2019/12/infrastructure.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"infrastructure-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"infrastructure-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"infrastructure-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"infrastructure-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"infrastructure-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:26:\"infrastructure-900x442.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:26:\"infrastructure-900x358.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"infrastructure-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"infrastructure-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"infrastructure-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"infrastructure-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"infrastructure-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"infrastructure-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"infrastructure-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4046, 738, '_edit_last', '1'),
(4047, 738, '_wp_page_template', 'default'),
(4050, 6946, '_wpb_shortcodes_custom_css', '.vc_custom_1576127026730{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}'),
(4051, 738, '_wp_old_slug', 'a-digital-prescription-for-the-pharma-industry'),
(4052, 6947, '_wp_attached_file', '2021/04/application-development.jpg'),
(4053, 6947, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:442;s:4:\"file\";s:35:\"2021/04/application-development.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"application-development-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"application-development-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"application-development-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"application-development-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:35:\"application-development-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:35:\"application-development-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"application-development-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:35:\"application-development-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:35:\"application-development-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:35:\"application-development-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:35:\"application-development-900x442.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:35:\"application-development-900x358.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:35:\"application-development-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"application-development-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"application-development-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"application-development-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"application-development-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"application-development-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"application-development-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4056, 1, '_thumbnail_id', '6947'),
(4057, 1, '_edit_last', '1'),
(4060, 1, 'title_box_bg_repeat', 'repeat'),
(4061, 1, '_wpb_vc_js_status', 'false'),
(4062, 2202, '_edit_lock', '1617707157:1'),
(4063, 2199, '_edit_lock', '1618398442:1'),
(4064, 6949, '_wp_attached_file', '2018/04/staffing.jpg'),
(4065, 6949, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:442;s:4:\"file\";s:20:\"2018/04/staffing.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"staffing-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"staffing-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"staffing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"staffing-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:20:\"staffing-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:20:\"staffing-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:18:\"staffing-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:20:\"staffing-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:20:\"staffing-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:20:\"staffing-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:20:\"staffing-900x442.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:20:\"staffing-900x358.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:20:\"staffing-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"staffing-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"staffing-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"staffing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"staffing-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"staffing-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"staffing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4068, 6953, '_wp_attached_file', '2018/04/outsourcing.jpg'),
(4069, 6953, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:442;s:4:\"file\";s:23:\"2018/04/outsourcing.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"outsourcing-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"outsourcing-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"outsourcing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"outsourcing-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"outsourcing-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:23:\"outsourcing-900x442.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:23:\"outsourcing-900x358.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:23:\"outsourcing-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"outsourcing-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"outsourcing-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"outsourcing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"outsourcing-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"outsourcing-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"outsourcing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4070, 2202, '_edit_last', '1'),
(4071, 2202, '_wp_page_template', 'default'),
(4074, 6954, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1549427531051{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392383562{margin-bottom: 0px !important;}'),
(4075, 2202, '_wp_old_slug', 'narrow-your-focus-to-prevent-overanalysis-2'),
(4076, 2199, '_edit_last', '1'),
(4077, 2199, '_wp_page_template', 'default'),
(4080, 6955, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(4081, 2199, '_wp_old_slug', 'a-fruitful-retirement-social-security-benefit'),
(4082, 6956, '_wp_attached_file', '2021/04/world-map-digital.jpg'),
(4083, 6956, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:29:\"2021/04/world-map-digital.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"world-map-digital-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"world-map-digital-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"world-map-digital-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"world-map-digital-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"world-map-digital-1536x440.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:30:\"world-map-digital-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"world-map-digital-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-900x550.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:29:\"world-map-digital-900x258.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"world-map-digital-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"world-map-digital-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"world-map-digital-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"world-map-digital-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"world-map-digital-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"world-map-digital-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"world-map-digital-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4084, 6957, '_wp_attached_file', '2021/04/staff-qual.jpg'),
(4085, 6957, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:953;s:6:\"height\";i:550;s:4:\"file\";s:22:\"2021/04/staff-qual.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"staff-qual-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"staff-qual-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"staff-qual-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"staff-qual-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:22:\"staff-qual-900x550.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:22:\"staff-qual-900x519.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"staff-qual-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"staff-qual-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"staff-qual-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"staff-qual-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"staff-qual-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"staff-qual-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"staff-qual-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4086, 6958, '_wp_attached_file', '2021/04/amazon-logo.png'),
(4087, 6958, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:55;s:4:\"file\";s:23:\"2021/04/amazon-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"amazon-logo-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"amazon-logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"amazon-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"amazon-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4088, 6959, '_wp_attached_file', '2021/04/flipcart-logo.png'),
(4089, 6959, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:55;s:4:\"file\";s:25:\"2021/04/flipcart-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"flipcart-logo-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:23:\"flipcart-logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"flipcart-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"flipcart-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4090, 6960, '_wp_attached_file', '2021/04/google-logo.png'),
(4091, 6960, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:55;s:4:\"file\";s:23:\"2021/04/google-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"google-logo-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"google-logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"google-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"google-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4092, 6961, '_wp_attached_file', '2021/04/netflix-logo.png'),
(4093, 6961, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:55;s:4:\"file\";s:24:\"2021/04/netflix-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"netflix-logo-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:22:\"netflix-logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"netflix-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"netflix-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4094, 6962, '_wp_attached_file', '2021/04/prime-video-logo.png'),
(4095, 6962, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:55;s:4:\"file\";s:28:\"2021/04/prime-video-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"prime-video-logo-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"prime-video-logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"prime-video-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"prime-video-logo-100x55.png\";s:5:\"width\";i:100;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4096, 6966, '_wp_attached_file', '2021/04/staf-image.jpg'),
(4097, 6966, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:675;s:6:\"height\";i:638;s:4:\"file\";s:22:\"2021/04/staf-image.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"staf-image-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"staf-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-675x550.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"staf-image-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"staf-image-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"staf-image-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"staf-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"staf-image-600x567.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"staf-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"staf-image-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"staf-image-600x567.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"staf-image-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4100, 6971, '_wp_attached_file', '2021/04/mid-img.jpg'),
(4101, 6971, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2021/04/mid-img.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"mid-img-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"mid-img-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mid-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"mid-img-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"mid-img-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:20:\"mid-img-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:17:\"mid-img-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:19:\"mid-img-900x640.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:19:\"mid-img-900x469.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:19:\"mid-img-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"mid-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"mid-img-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"mid-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"mid-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"mid-img-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"mid-img-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4104, 2199, 'rs_page_bg_color', ''),
(4105, 6978, '_wpb_shortcodes_custom_css', '.vc_custom_1459505959648{margin-bottom: -60px !important;}.vc_custom_1452702342137{padding-right: 45px !important;}.vc_custom_1456126057085{margin-bottom: 20px !important;}.vc_custom_1452700243026{margin-bottom: 39px !important;}.vc_custom_1545392426455{margin-bottom: 0px !important;}'),
(4106, 2199, '_wp_old_slug', 'outsourcing'),
(4125, 6982, '_menu_item_type', 'custom'),
(4126, 6982, '_menu_item_menu_item_parent', '6896'),
(4127, 6982, '_menu_item_object_id', '6982'),
(4128, 6982, '_menu_item_object', 'custom'),
(4129, 6982, '_menu_item_target', ''),
(4130, 6982, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4131, 6982, '_menu_item_xfn', ''),
(4132, 6982, '_menu_item_url', '#'),
(4251, 6895, '_wp_old_date', '2021-04-06'),
(4252, 6896, '_wp_old_date', '2021-04-06'),
(4273, 6982, '_menu_item_stm_mega', 'disabled'),
(4274, 6982, '_menu_item_stm_mega_cols', 'default'),
(4275, 6982, '_menu_item_stm_mega_col_width', 'default'),
(4276, 6982, '_menu_item_stm_mega_cols_inside', 'default'),
(4277, 6982, '_menu_item_stm_mega_second_col_width', 'default'),
(4278, 6982, '_menu_item_stm_menu_icon', ''),
(4279, 6982, '_menu_item_stm_mega_col_width_banner', 'default'),
(4280, 6982, '_menu_item_stm_menu_image', ''),
(4281, 6982, '_menu_item_stm_mega_textarea', ''),
(4282, 6982, '_menu_item_stm_menu_bg', ''),
(4313, 6897, '_wp_old_date', '2021-04-06'),
(4315, 6899, '_wp_old_date', '2021-04-06'),
(4316, 6916, '_wp_old_date', '2021-04-06'),
(4417, 6483, '_edit_lock', '1618551015:1'),
(4496, 6894, '_elementor_css', 'a:6:{s:4:\"time\";i:1618550807;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(4498, 7004, '_edit_lock', '1618985544:1'),
(4499, 7004, '_edit_last', '1'),
(4500, 7004, 'enable_transparent', 'on'),
(4501, 7004, 'title_box_bg_repeat', 'no-repeat'),
(4502, 7004, 'disable_title', 'on'),
(4503, 7004, '_wpb_vc_js_status', 'false'),
(4504, 7004, 'disable_breadcrumbs', 'on'),
(4505, 7004, '_wp_page_template', 'default'),
(4506, 7007, '_wpb_shortcodes_custom_css', '.vc_custom_1455883727307{margin-bottom: 34px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1453471528699{margin-bottom: 15px !important;}.vc_custom_1453471549250{margin-bottom: 28px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(4508, 7009, '_wpb_shortcodes_custom_css', '.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(4509, 7010, '_wpb_shortcodes_custom_css', '.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(4510, 7011, '_wpb_shortcodes_custom_css', '.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(4511, 7012, '_wpb_shortcodes_custom_css', '.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1545389865376{margin-bottom: 0px !important;}'),
(4514, 7019, '_wp_attached_file', '2021/04/test.jpg'),
(4515, 7019, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2021/04/test.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"test-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"test-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:16:\"test-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:16:\"test-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:14:\"test-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:16:\"test-320x300.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:16:\"test-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:16:\"test-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:16:\"test-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"test-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"test-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"test-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"test-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4516, 7004, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618557153424{padding-right: 20px !important;}.vc_custom_1618552985196{padding-left: 20px !important;}.vc_custom_1618557330776{padding-right: 20px !important;}.vc_custom_1618553042340{padding-left: 20px !important;}.vc_custom_1618557739555{padding-right: 20px !important;}.vc_custom_1618553091967{padding-left: 20px !important;}.vc_custom_1618557894400{padding-right: 20px !important;}.vc_custom_1618553351100{padding-left: 20px !important;}.vc_custom_1618558674081{padding-right: 20px !important;}.vc_custom_1618553335629{padding-left: 20px !important;}.vc_custom_1618558491141{padding-right: 20px !important;}.vc_custom_1618553312429{padding-left: 20px !important;}.vc_custom_1618558207015{padding-right: 20px !important;}.vc_custom_1618553191420{padding-left: 20px !important;}.vc_custom_1618558097367{padding-right: 20px !important;}'),
(4517, 7022, '_wpb_shortcodes_custom_css', '.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618552389864{padding-right: 20px !important;}'),
(4518, 7024, '_wpb_shortcodes_custom_css', '.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618552389864{padding-right: 20px !important;}.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618552389864{padding-right: 20px !important;}'),
(4519, 7027, '_wp_attached_file', '2021/04/cloud-monitoring-services.png'),
(4520, 7027, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2021/04/cloud-monitoring-services.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-300x154.png\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:35:\"cloud-monitoring-services-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-320x300.png\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"cloud-monitoring-services-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"cloud-monitoring-services-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4521, 7029, '_wp_attached_file', '2021/04/enterprise-portal-solutions.png'),
(4522, 7029, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:300;s:4:\"file\";s:39:\"2021/04/enterprise-portal-solutions.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-300x154.png\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-350x204.png\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:37:\"enterprise-portal-solutions-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-320x300.png\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-255x182.png\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-350x195.png\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-358x250.png\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"enterprise-portal-solutions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"enterprise-portal-solutions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4523, 7031, '_wp_attached_file', '2021/04/mobile-app-dev.png'),
(4524, 7031, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:26:\"2021/04/mobile-app-dev.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mobile-app-dev-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"mobile-app-dev-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-320x156.png\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-255x156.png\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-358x156.png\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"mobile-app-dev-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"mobile-app-dev-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4525, 7032, '_wp_attached_file', '2021/04/qa-testing.jpg'),
(4526, 7032, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:22:\"2021/04/qa-testing.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"qa-testing-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"qa-testing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"qa-testing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"qa-testing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"qa-testing-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"qa-testing-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"qa-testing-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"qa-testing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"qa-testing-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"qa-testing-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"qa-testing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"qa-testing-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"qa-testing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4527, 7033, '_wp_attached_file', '2021/04/app-maintanence.jpg'),
(4528, 7033, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:27:\"2021/04/app-maintanence.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"app-maintanence-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"app-maintanence-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:25:\"app-maintanence-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:27:\"app-maintanence-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"app-maintanence-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"app-maintanence-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"app-maintanence-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"app-maintanence-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4529, 7034, '_wp_attached_file', '2021/04/security.jpg'),
(4530, 7034, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:20:\"2021/04/security.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"security-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"security-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:20:\"security-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:20:\"security-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:18:\"security-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:20:\"security-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:20:\"security-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:20:\"security-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:20:\"security-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"security-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"security-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"security-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"security-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4531, 7035, '_wp_attached_file', '2021/04/portal-upgrade-migration.jpg'),
(4532, 7035, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:379;s:4:\"file\";s:36:\"2021/04/portal-upgrade-migration.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:34:\"portal-upgrade-migration-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"portal-upgrade-migration-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"portal-upgrade-migration-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4533, 7037, '_wp_attached_file', '2021/04/application-performance.png');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4534, 7037, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:35:\"2021/04/application-performance.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"application-performance-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"application-performance-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:35:\"application-performance-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:35:\"application-performance-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:33:\"application-performance-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:35:\"application-performance-320x156.png\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:35:\"application-performance-255x156.png\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:35:\"application-performance-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:35:\"application-performance-358x156.png\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"application-performance-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"application-performance-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"application-performance-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"application-performance-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4538, 7039, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618565362006{padding-left: 20px !important;}.vc_custom_1618566849432{padding-right: 20px !important;}.vc_custom_1618565445247{padding-left: 20px !important;}.vc_custom_1618567244110{padding-right: 20px !important;}.vc_custom_1618565484632{padding-left: 20px !important;}.vc_custom_1618567482973{padding-right: 20px !important;}.vc_custom_1618565517816{padding-left: 20px !important;}.vc_custom_1618567645970{padding-right: 20px !important;}.vc_custom_1618565568271{padding-left: 20px !important;}.vc_custom_1618567813266{padding-right: 20px !important;}.vc_custom_1618565597744{padding-left: 20px !important;}.vc_custom_1618567928806{padding-right: 20px !important;}.vc_custom_1618565660591{padding-left: 20px !important;}.vc_custom_1618568131991{padding-right: 20px !important;}.vc_custom_1618565702696{padding-left: 20px !important;}.vc_custom_1618568512552{padding-right: 20px !important;}.vc_custom_1618565784547{padding-left: 20px !important;}.vc_custom_1618568778735{padding-right: 20px !important;}.vc_custom_1618565814893{padding-left: 20px !important;}.vc_custom_1618569235548{padding-right: 20px !important;}.vc_custom_1618565896447{padding-left: 20px !important;}.vc_custom_1618569415058{padding-right: 20px !important;}'),
(4539, 7039, '_edit_lock', '1618565135:1'),
(4540, 7039, '_edit_last', '1'),
(4541, 7039, 'enable_transparent', 'on'),
(4542, 7039, 'title_box_bg_repeat', 'no-repeat'),
(4543, 7039, 'disable_title', 'on'),
(4544, 7039, '_wpb_vc_js_status', 'false'),
(4545, 7039, 'disable_breadcrumbs', 'on'),
(4546, 7039, '_wp_page_template', 'default'),
(4547, 7039, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618565362006{padding-left: 20px !important;}.vc_custom_1618566849432{padding-right: 20px !important;}.vc_custom_1618565445247{padding-left: 20px !important;}.vc_custom_1618567244110{padding-right: 20px !important;}.vc_custom_1618565484632{padding-left: 20px !important;}.vc_custom_1618567482973{padding-right: 20px !important;}.vc_custom_1618565517816{padding-left: 20px !important;}.vc_custom_1618567645970{padding-right: 20px !important;}.vc_custom_1618565568271{padding-left: 20px !important;}.vc_custom_1618567813266{padding-right: 20px !important;}.vc_custom_1618565597744{padding-left: 20px !important;}.vc_custom_1618567928806{padding-right: 20px !important;}.vc_custom_1618565660591{padding-left: 20px !important;}.vc_custom_1618568131991{padding-right: 20px !important;}.vc_custom_1618565702696{padding-left: 20px !important;}.vc_custom_1618568512552{padding-right: 20px !important;}.vc_custom_1618565784547{padding-left: 20px !important;}.vc_custom_1618568778735{padding-right: 20px !important;}.vc_custom_1618565814893{padding-left: 20px !important;}.vc_custom_1618569235548{padding-right: 20px !important;}.vc_custom_1618565896447{padding-left: 20px !important;}.vc_custom_1618569415058{padding-right: 20px !important;}'),
(4559, 7045, '_wp_attached_file', '2021/04/cloud-infrastructure-monitoring.jpg'),
(4560, 7045, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:110;s:4:\"file\";s:43:\"2021/04/cloud-infrastructure-monitoring.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"cloud-infrastructure-monitoring-300x56.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-350x110.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-350x110.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:41:\"cloud-infrastructure-monitoring-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-320x110.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-255x110.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-350x110.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-358x110.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"cloud-infrastructure-monitoring-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4563, 7047, '_wp_attached_file', '2021/04/cloud-optmization.jpg'),
(4564, 7047, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:29:\"2021/04/cloud-optmization.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cloud-optmization-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"cloud-optmization-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"cloud-optmization-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"cloud-optmization-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4565, 7049, '_wp_attached_file', '2021/04/cloud-enabled-automation.jpg'),
(4566, 7049, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:36:\"2021/04/cloud-enabled-automation.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"cloud-enabled-automation-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:34:\"cloud-enabled-automation-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"cloud-enabled-automation-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-enabled-automation-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4567, 7050, '_wp_attached_file', '2021/04/cloud-migrations.jpg'),
(4568, 7050, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:28:\"2021/04/cloud-migrations.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cloud-migrations-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"cloud-migrations-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cloud-migrations-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-migrations-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4569, 7051, '_wp_attached_file', '2021/04/cloud-native-devops.jpg'),
(4570, 7051, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:31:\"2021/04/cloud-native-devops.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cloud-native-devops-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:29:\"cloud-native-devops-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"cloud-native-devops-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"cloud-native-devops-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4571, 7052, '_wp_attached_file', '2021/04/cloud-native-app.jpg'),
(4572, 7052, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:28:\"2021/04/cloud-native-app.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cloud-native-app-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"cloud-native-app-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"cloud-native-app-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cloud-native-app-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4573, 7054, '_wp_attached_file', '2021/04/containerization-strategy-and-architecture.jpg'),
(4574, 7054, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:54:\"2021/04/containerization-strategy-and-architecture.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"containerization-strategy-and-architecture-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:52:\"containerization-strategy-and-architecture-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"containerization-strategy-and-architecture-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4575, 7056, '_wp_attached_file', '2021/04/cloud-native-application.jpg'),
(4576, 7056, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:36:\"2021/04/cloud-native-application.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"cloud-native-application-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:34:\"cloud-native-application-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"cloud-native-application-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"cloud-native-application-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4577, 7057, '_wp_attached_file', '2021/04/container-instrumentaion.jpg'),
(4578, 7057, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:36:\"2021/04/container-instrumentaion.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"container-instrumentaion-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:34:\"container-instrumentaion-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"container-instrumentaion-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"container-instrumentaion-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4579, 7058, '_wp_attached_file', '2021/04/monitoring-production-support.jpg'),
(4580, 7058, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:41:\"2021/04/monitoring-production-support.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"monitoring-production-support-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:39:\"monitoring-production-support-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"monitoring-production-support-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"monitoring-production-support-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4581, 7059, '_wp_attached_file', '2021/04/installation-configuration-setup.jpg'),
(4582, 7059, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:44:\"2021/04/installation-configuration-setup.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"installation-configuration-setup-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:42:\"installation-configuration-setup-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"installation-configuration-setup-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"installation-configuration-setup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4583, 7061, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618569782806{padding-left: 20px !important;}.vc_custom_1618569855603{padding-left: 20px !important;}.vc_custom_1618569966816{padding-left: 20px !important;}.vc_custom_1618570076366{padding-right: 20px !important;}'),
(4584, 7061, '_edit_lock', '1618569421:1'),
(4585, 7061, '_edit_last', '1'),
(4586, 7061, 'enable_transparent', 'on'),
(4587, 7061, 'title_box_bg_repeat', 'no-repeat'),
(4588, 7061, 'disable_title', 'on'),
(4589, 7061, '_wpb_vc_js_status', 'false'),
(4590, 7061, 'disable_breadcrumbs', 'on'),
(4591, 7061, '_wp_page_template', 'default'),
(4592, 7061, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618569782806{padding-left: 20px !important;}.vc_custom_1618569855603{padding-left: 20px !important;}.vc_custom_1618569966816{padding-left: 20px !important;}.vc_custom_1618570076366{padding-right: 20px !important;}'),
(4599, 7062, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618557153424{padding-right: 20px !important;}.vc_custom_1618552985196{padding-left: 20px !important;}.vc_custom_1618557330776{padding-right: 20px !important;}.vc_custom_1618553042340{padding-left: 20px !important;}.vc_custom_1618557739555{padding-right: 20px !important;}.vc_custom_1618553091967{padding-left: 20px !important;}.vc_custom_1618557894400{padding-right: 20px !important;}.vc_custom_1618553351100{padding-left: 20px !important;}.vc_custom_1618558674081{padding-right: 20px !important;}.vc_custom_1618553335629{padding-left: 20px !important;}.vc_custom_1618558491141{padding-right: 20px !important;}.vc_custom_1618553312429{padding-left: 20px !important;}.vc_custom_1618558207015{padding-right: 20px !important;}.vc_custom_1618553191420{padding-left: 20px !important;}.vc_custom_1618558097367{padding-right: 20px !important;}'),
(4600, 7063, '_wp_attached_file', '2021/04/contract-staffing.jpg'),
(4601, 7063, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:29:\"2021/04/contract-staffing.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"contract-staffing-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"contract-staffing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"contract-staffing-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"contract-staffing-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"contract-staffing-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"contract-staffing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"contract-staffing-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"contract-staffing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4602, 7065, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618570636718{padding-left: 20px !important;}.vc_custom_1618570797868{padding-left: 20px !important;}.vc_custom_1618571078861{padding-right: 20px !important;}'),
(4603, 7065, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618570636718{padding-left: 20px !important;}.vc_custom_1618570797868{padding-left: 20px !important;}.vc_custom_1618571078861{padding-right: 20px !important;}'),
(4604, 7065, '_edit_lock', '1618570087:1'),
(4605, 7065, '_edit_last', '1'),
(4606, 7065, 'enable_transparent', 'on'),
(4607, 7065, 'title_box_bg_repeat', 'no-repeat'),
(4608, 7065, 'disable_title', 'on'),
(4609, 7065, '_wpb_vc_js_status', 'false'),
(4610, 7065, 'disable_breadcrumbs', 'on'),
(4611, 7065, '_wp_page_template', 'default'),
(4612, 7065, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618570636718{padding-left: 20px !important;}.vc_custom_1618570797868{padding-left: 20px !important;}.vc_custom_1618571078861{padding-right: 20px !important;}'),
(4618, 7066, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618569782806{padding-left: 20px !important;}.vc_custom_1618569855603{padding-left: 20px !important;}.vc_custom_1618569966816{padding-left: 20px !important;}.vc_custom_1618570076366{padding-right: 20px !important;}'),
(4619, 7068, '_menu_item_type', 'post_type'),
(4620, 7068, '_menu_item_menu_item_parent', '6982'),
(4621, 7068, '_menu_item_object_id', '7065'),
(4622, 7068, '_menu_item_object', 'page'),
(4623, 7068, '_menu_item_target', ''),
(4624, 7068, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4625, 7068, '_menu_item_xfn', ''),
(4626, 7068, '_menu_item_url', ''),
(4628, 7069, '_menu_item_type', 'post_type'),
(4629, 7069, '_menu_item_menu_item_parent', '6982'),
(4630, 7069, '_menu_item_object_id', '7061'),
(4631, 7069, '_menu_item_object', 'page'),
(4632, 7069, '_menu_item_target', ''),
(4633, 7069, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4634, 7069, '_menu_item_xfn', ''),
(4635, 7069, '_menu_item_url', ''),
(4637, 7070, '_menu_item_type', 'post_type'),
(4638, 7070, '_menu_item_menu_item_parent', '6896'),
(4639, 7070, '_menu_item_object_id', '7039'),
(4640, 7070, '_menu_item_object', 'page'),
(4641, 7070, '_menu_item_target', ''),
(4642, 7070, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4643, 7070, '_menu_item_xfn', ''),
(4644, 7070, '_menu_item_url', ''),
(4646, 7071, '_menu_item_type', 'post_type'),
(4647, 7071, '_menu_item_menu_item_parent', '6896'),
(4648, 7071, '_menu_item_object_id', '7004'),
(4649, 7071, '_menu_item_object', 'page'),
(4650, 7071, '_menu_item_target', ''),
(4651, 7071, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4652, 7071, '_menu_item_xfn', ''),
(4653, 7071, '_menu_item_url', ''),
(4655, 6895, '_wp_old_date', '2021-04-14'),
(4656, 6896, '_wp_old_date', '2021-04-14'),
(4657, 7071, '_menu_item_stm_mega', 'disabled'),
(4658, 7071, '_menu_item_stm_mega_cols', 'default'),
(4659, 7071, '_menu_item_stm_mega_col_width', 'default'),
(4660, 7071, '_menu_item_stm_mega_cols_inside', 'default'),
(4661, 7071, '_menu_item_stm_mega_second_col_width', 'default'),
(4662, 7071, '_menu_item_stm_menu_icon', ''),
(4663, 7071, '_menu_item_stm_mega_col_width_banner', 'default'),
(4664, 7071, '_menu_item_stm_menu_image', ''),
(4665, 7071, '_menu_item_stm_mega_textarea', ''),
(4666, 7071, '_menu_item_stm_menu_bg', ''),
(4667, 7070, '_menu_item_stm_mega', 'disabled'),
(4668, 7070, '_menu_item_stm_mega_cols', 'default'),
(4669, 7070, '_menu_item_stm_mega_col_width', 'default'),
(4670, 7070, '_menu_item_stm_mega_cols_inside', 'default'),
(4671, 7070, '_menu_item_stm_mega_second_col_width', 'default'),
(4672, 7070, '_menu_item_stm_menu_icon', ''),
(4673, 7070, '_menu_item_stm_mega_col_width_banner', 'default'),
(4674, 7070, '_menu_item_stm_menu_image', ''),
(4675, 7070, '_menu_item_stm_mega_textarea', ''),
(4676, 7070, '_menu_item_stm_menu_bg', ''),
(4677, 6982, '_wp_old_date', '2021-04-14'),
(4678, 7069, '_menu_item_stm_mega', 'disabled'),
(4679, 7069, '_menu_item_stm_mega_cols', 'default'),
(4680, 7069, '_menu_item_stm_mega_col_width', 'default'),
(4681, 7069, '_menu_item_stm_mega_cols_inside', 'default'),
(4682, 7069, '_menu_item_stm_mega_second_col_width', 'default'),
(4683, 7069, '_menu_item_stm_menu_icon', ''),
(4684, 7069, '_menu_item_stm_mega_col_width_banner', 'default'),
(4685, 7069, '_menu_item_stm_menu_image', ''),
(4686, 7069, '_menu_item_stm_mega_textarea', ''),
(4687, 7069, '_menu_item_stm_menu_bg', ''),
(4688, 7068, '_menu_item_stm_mega', 'disabled'),
(4689, 7068, '_menu_item_stm_mega_cols', 'default'),
(4690, 7068, '_menu_item_stm_mega_col_width', 'default'),
(4691, 7068, '_menu_item_stm_mega_cols_inside', 'default'),
(4692, 7068, '_menu_item_stm_mega_second_col_width', 'default'),
(4693, 7068, '_menu_item_stm_menu_icon', ''),
(4694, 7068, '_menu_item_stm_mega_col_width_banner', 'default'),
(4695, 7068, '_menu_item_stm_menu_image', ''),
(4696, 7068, '_menu_item_stm_mega_textarea', ''),
(4697, 7068, '_menu_item_stm_menu_bg', ''),
(4700, 6897, '_wp_old_date', '2021-04-14'),
(4711, 6899, '_wp_old_date', '2021-04-14'),
(4712, 6916, '_wp_old_date', '2021-04-14'),
(4713, 7073, '_wp_attached_file', '2021/04/contract-to-hire.jpg');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4714, 7073, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:363;s:4:\"file\";s:28:\"2021/04/contract-to-hire.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"contract-to-hire-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"contract-to-hire-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"contract-to-hire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4715, 7075, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(4716, 7075, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(4717, 7075, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(4718, 7075, '_edit_lock', '1618985617:1'),
(4719, 7075, '_edit_last', '1'),
(4720, 7075, 'enable_transparent', 'on'),
(4721, 7075, 'title_box_bg_repeat', 'no-repeat'),
(4722, 7075, 'disable_title', 'on'),
(4723, 7075, '_wpb_vc_js_status', 'false'),
(4724, 7075, 'disable_breadcrumbs', 'on'),
(4725, 7075, '_wp_page_template', 'default'),
(4726, 7075, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(4731, 7076, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618570636718{padding-left: 20px !important;}.vc_custom_1618570797868{padding-left: 20px !important;}.vc_custom_1618571078861{padding-right: 20px !important;}'),
(4732, 7077, '_wp_attached_file', '2021/04/direct-hire.jpg'),
(4733, 7077, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:156;s:4:\"file\";s:23:\"2021/04/direct-hire.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"direct-hire-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"direct-hire-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:23:\"direct-hire-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:23:\"direct-hire-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"direct-hire-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:23:\"direct-hire-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:23:\"direct-hire-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:23:\"direct-hire-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:23:\"direct-hire-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"direct-hire-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"direct-hire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"direct-hire-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"direct-hire-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4734, 7079, '_menu_item_type', 'post_type'),
(4735, 7079, '_menu_item_menu_item_parent', '6982'),
(4736, 7079, '_menu_item_object_id', '7075'),
(4737, 7079, '_menu_item_object', 'page'),
(4738, 7079, '_menu_item_target', ''),
(4739, 7079, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4740, 7079, '_menu_item_xfn', ''),
(4741, 7079, '_menu_item_url', ''),
(4743, 7080, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(4744, 7080, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(4745, 7080, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(4746, 7080, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(4747, 7080, '_edit_lock', '1618985726:1'),
(4748, 7080, '_edit_last', '1'),
(4749, 7080, 'enable_transparent', 'on'),
(4750, 7080, 'title_box_bg_repeat', 'no-repeat'),
(4751, 7080, 'disable_title', 'on'),
(4752, 7080, '_wpb_vc_js_status', 'false'),
(4753, 7080, 'disable_breadcrumbs', 'on'),
(4754, 7080, '_wp_page_template', 'default'),
(4755, 7080, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(4759, 7081, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(4760, 7084, '_wp_attached_file', '2021/04/consulting.jpg'),
(4761, 7084, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2021/04/consulting.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"consulting-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"consulting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"consulting-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"consulting-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"consulting-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"consulting-320x300.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"consulting-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"consulting-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"consulting-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"consulting-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"consulting-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"consulting-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"consulting-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4762, 7079, '_menu_item_stm_mega', 'disabled'),
(4763, 7079, '_menu_item_stm_mega_cols', 'default'),
(4764, 7079, '_menu_item_stm_mega_col_width', 'default'),
(4765, 7079, '_menu_item_stm_mega_cols_inside', 'default'),
(4766, 7079, '_menu_item_stm_mega_second_col_width', 'default'),
(4767, 7079, '_menu_item_stm_menu_icon', ''),
(4768, 7079, '_menu_item_stm_mega_col_width_banner', 'default'),
(4769, 7079, '_menu_item_stm_menu_image', ''),
(4770, 7079, '_menu_item_stm_mega_textarea', ''),
(4771, 7079, '_menu_item_stm_menu_bg', ''),
(4772, 7087, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4773, 7087, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4774, 7087, '_edit_lock', '1618915681:1'),
(4775, 7087, '_edit_last', '1'),
(4776, 7087, 'enable_transparent', 'on'),
(4777, 7087, 'title_box_bg_repeat', 'no-repeat'),
(4778, 7087, 'disable_title', 'on'),
(4779, 7087, '_wpb_vc_js_status', 'true'),
(4780, 7087, 'disable_breadcrumbs', 'on'),
(4781, 7087, '_wp_page_template', 'default'),
(4782, 7087, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4790, 7087, '_wp_desired_post_slug', ''),
(4791, 7088, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618569782806{padding-left: 20px !important;}.vc_custom_1618569855603{padding-left: 20px !important;}.vc_custom_1618569966816{padding-left: 20px !important;}.vc_custom_1618570076366{padding-right: 20px !important;}'),
(4792, 7089, '_menu_item_type', 'post_type'),
(4793, 7089, '_menu_item_menu_item_parent', '6896'),
(4794, 7089, '_menu_item_object_id', '7080'),
(4795, 7089, '_menu_item_object', 'page'),
(4796, 7089, '_menu_item_target', ''),
(4797, 7089, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4798, 7089, '_menu_item_xfn', ''),
(4799, 7089, '_menu_item_url', ''),
(4801, 6895, '_wp_old_date', '2021-04-16'),
(4802, 6896, '_wp_old_date', '2021-04-16'),
(4803, 7071, '_wp_old_date', '2021-04-16'),
(4804, 7070, '_wp_old_date', '2021-04-16'),
(4805, 6982, '_wp_old_date', '2021-04-16'),
(4806, 7069, '_wp_old_date', '2021-04-16'),
(4807, 7068, '_wp_old_date', '2021-04-16'),
(4808, 7079, '_wp_old_date', '2021-04-16'),
(4809, 7089, '_menu_item_stm_mega', 'disabled'),
(4810, 7089, '_menu_item_stm_mega_cols', 'default'),
(4811, 7089, '_menu_item_stm_mega_col_width', 'default'),
(4812, 7089, '_menu_item_stm_mega_cols_inside', 'default'),
(4813, 7089, '_menu_item_stm_mega_second_col_width', 'default'),
(4814, 7089, '_menu_item_stm_menu_icon', ''),
(4815, 7089, '_menu_item_stm_mega_col_width_banner', 'default'),
(4816, 7089, '_menu_item_stm_menu_image', ''),
(4817, 7089, '_menu_item_stm_mega_textarea', ''),
(4818, 7089, '_menu_item_stm_menu_bg', ''),
(4819, 6897, '_wp_old_date', '2021-04-16'),
(4830, 6899, '_wp_old_date', '2021-04-16'),
(4831, 6916, '_wp_old_date', '2021-04-16'),
(4832, 7090, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618569782806{padding-left: 20px !important;}.vc_custom_1618569855603{padding-left: 20px !important;}.vc_custom_1618569966816{padding-left: 20px !important;}.vc_custom_1618570076366{padding-right: 20px !important;}'),
(4835, 7093, '_wp_attached_file', '2021/04/it-solutions-bank.jpg'),
(4836, 7093, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:330;s:4:\"file\";s:29:\"2021/04/it-solutions-bank.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"it-solutions-bank-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"it-solutions-bank-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"it-solutions-bank-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4837, 7096, '_wp_attached_file', '2021/04/technology-offerings.jpg'),
(4838, 7096, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2021/04/technology-offerings.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"technology-offerings-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"technology-offerings-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"technology-offerings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"technology-offerings-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"technology-offerings-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"technology-offerings-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:33:\"technology-offerings-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:30:\"technology-offerings-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:32:\"technology-offerings-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:32:\"technology-offerings-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"technology-offerings-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"technology-offerings-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"technology-offerings-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"technology-offerings-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"technology-offerings-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"technology-offerings-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(4839, 7098, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618902870306{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4840, 7099, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618902870306{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4841, 7101, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618903757020{padding-top: 100px !important;padding-bottom: 100px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4842, 7102, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4843, 7103, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4844, 7104, '_wpb_shortcodes_custom_css', '.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4845, 7105, '_wpb_shortcodes_custom_css', '.vc_custom_1618906536388{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}.vc_custom_1618903660538{padding-top: 40px !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(4846, 7106, '_wpb_shortcodes_custom_css', '.vc_custom_1618906536388{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4847, 7107, '_wpb_shortcodes_custom_css', '.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4848, 7108, '_wpb_shortcodes_custom_css', '.vc_custom_1618906681206{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4849, 7109, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4850, 7110, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4851, 7111, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4855, 7114, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4863, 7121, '_wpb_shortcodes_custom_css', '.vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4864, 7121, '_wpb_shortcodes_custom_css', '.vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4865, 7121, '_wpb_shortcodes_custom_css', '.vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4866, 7121, '_edit_lock', '1618915262:1'),
(4867, 7121, '_edit_last', '1'),
(4868, 7121, 'enable_transparent', 'on'),
(4869, 7121, 'title_box_bg_repeat', 'no-repeat'),
(4870, 7121, 'disable_title', 'on'),
(4871, 7121, '_wpb_vc_js_status', 'true'),
(4872, 7121, 'disable_breadcrumbs', 'on'),
(4873, 7121, '_wp_page_template', 'default'),
(4874, 7121, '_wpb_shortcodes_custom_css', '.vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4875, 7121, '_wp_desired_post_slug', ''),
(4879, 7122, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4880, 7124, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4881, 7125, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4882, 7126, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4883, 7126, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4884, 7126, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4885, 7126, '_edit_lock', '1618915600:1'),
(4886, 7126, '_edit_last', '1'),
(4887, 7126, 'enable_transparent', 'on'),
(4888, 7126, 'title_box_bg_repeat', 'no-repeat'),
(4889, 7126, 'disable_title', 'on'),
(4890, 7126, '_wpb_vc_js_status', 'true'),
(4891, 7126, 'disable_breadcrumbs', 'on'),
(4892, 7126, '_wp_page_template', 'default'),
(4893, 7126, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4894, 7126, '_wp_desired_post_slug', ''),
(4898, 7127, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4899, 7129, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618908059514{padding-top: 10px !important;padding-left: 20px !important;}'),
(4900, 7130, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618908059514{padding-top: 10px !important;padding-left: 20px !important;}'),
(4901, 7131, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618908260574{padding-top: 10px !important;padding-left: 20px !important;}'),
(4902, 7132, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4903, 7133, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4904, 7134, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618908387246{padding-left: 20px !important;}'),
(4905, 7135, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4906, 7136, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}'),
(4907, 7137, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4908, 7138, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4909, 7139, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(4910, 7140, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4911, 7140, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4912, 7140, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4913, 7140, '_edit_lock', '1618916370:1'),
(4914, 7140, '_edit_last', '1'),
(4915, 7140, 'enable_transparent', 'on'),
(4916, 7140, 'title_box_bg_repeat', 'no-repeat'),
(4917, 7140, 'disable_title', 'on'),
(4918, 7140, '_wpb_vc_js_status', 'true'),
(4919, 7140, 'disable_breadcrumbs', 'on'),
(4920, 7140, '_wp_page_template', 'default'),
(4921, 7140, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4922, 7140, '_wp_desired_post_slug', ''),
(4926, 7141, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4927, 7143, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4928, 7144, '_wpb_shortcodes_custom_css', '.vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916861169{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4929, 7144, '_wpb_shortcodes_custom_css', '.vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916861169{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4930, 7144, '_wpb_shortcodes_custom_css', '.vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916861169{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4931, 7144, '_edit_lock', '1618916861:1'),
(4932, 7144, '_edit_last', '1'),
(4933, 7144, 'enable_transparent', 'on'),
(4934, 7144, 'title_box_bg_repeat', 'no-repeat'),
(4935, 7144, 'disable_title', 'on'),
(4936, 7144, '_wpb_vc_js_status', 'true'),
(4937, 7144, 'disable_breadcrumbs', 'on'),
(4938, 7144, '_wp_page_template', 'default'),
(4939, 7144, '_wpb_shortcodes_custom_css', '.vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916861169{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4940, 7144, '_wp_desired_post_slug', ''),
(4944, 7145, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4945, 7146, '_wpb_shortcodes_custom_css', '.vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917173790{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4946, 7146, '_wpb_shortcodes_custom_css', '.vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917173790{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4947, 7146, '_wpb_shortcodes_custom_css', '.vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917173790{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4948, 7146, '_edit_lock', '1618917318:1'),
(4949, 7146, '_edit_last', '1'),
(4950, 7146, 'enable_transparent', 'on'),
(4951, 7146, 'title_box_bg_repeat', 'no-repeat'),
(4952, 7146, 'disable_title', 'on'),
(4953, 7146, '_wpb_vc_js_status', 'true'),
(4954, 7146, 'disable_breadcrumbs', 'on'),
(4955, 7146, '_wp_page_template', 'default'),
(4956, 7146, '_wpb_shortcodes_custom_css', '.vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917173790{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4957, 7146, '_wp_desired_post_slug', ''),
(4961, 7147, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4962, 7149, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4963, 7150, '_wpb_shortcodes_custom_css', '.vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917619699{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4964, 7150, '_wpb_shortcodes_custom_css', '.vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917619699{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4965, 7150, '_wpb_shortcodes_custom_css', '.vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917619699{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4966, 7150, '_edit_lock', '1618917953:1'),
(4967, 7150, '_edit_last', '1'),
(4968, 7150, 'enable_transparent', 'on'),
(4969, 7150, 'title_box_bg_repeat', 'no-repeat'),
(4970, 7150, 'disable_title', 'on'),
(4971, 7150, '_wpb_vc_js_status', 'true'),
(4972, 7150, 'disable_breadcrumbs', 'on'),
(4973, 7150, '_wp_page_template', 'default'),
(4974, 7150, '_wpb_shortcodes_custom_css', '.vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917619699{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4975, 7150, '_wp_desired_post_slug', ''),
(4979, 7151, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4980, 7153, '_wpb_shortcodes_custom_css', '.vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918156466{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4981, 7153, '_wpb_shortcodes_custom_css', '.vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918156466{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4982, 7153, '_wpb_shortcodes_custom_css', '.vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918156466{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4983, 7153, '_edit_lock', '1618918296:1'),
(4984, 7153, '_edit_last', '1'),
(4985, 7153, 'enable_transparent', 'on'),
(4986, 7153, 'title_box_bg_repeat', 'no-repeat'),
(4987, 7153, 'disable_title', 'on'),
(4988, 7153, '_wpb_vc_js_status', 'true'),
(4989, 7153, 'disable_breadcrumbs', 'on'),
(4990, 7153, '_wp_page_template', 'default'),
(4991, 7153, '_wpb_shortcodes_custom_css', '.vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918156466{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4992, 7153, '_wp_desired_post_slug', ''),
(4996, 7154, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4997, 7156, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(4998, 7157, '_wpb_shortcodes_custom_css', '.vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918510667{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(4999, 7157, '_wpb_shortcodes_custom_css', '.vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918510667{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5000, 7157, '_wpb_shortcodes_custom_css', '.vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918510667{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5001, 7157, '_edit_lock', '1618918397:1'),
(5002, 7157, '_edit_last', '1'),
(5003, 7157, 'enable_transparent', 'on'),
(5004, 7157, 'title_box_bg_repeat', 'no-repeat'),
(5005, 7157, 'disable_title', 'on'),
(5006, 7157, '_wpb_vc_js_status', 'true'),
(5007, 7157, 'disable_breadcrumbs', 'on'),
(5008, 7157, '_wp_page_template', 'default'),
(5009, 7157, '_wpb_shortcodes_custom_css', '.vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918510667{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5010, 7157, '_wp_desired_post_slug', ''),
(5014, 7158, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(5015, 7160, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911734081{padding-top: 10px !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(5016, 7161, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(5017, 7162, '_menu_item_type', 'post_type'),
(5018, 7162, '_menu_item_menu_item_parent', '6897'),
(5019, 7162, '_menu_item_object_id', '7087'),
(5020, 7162, '_menu_item_object', 'page'),
(5021, 7162, '_menu_item_target', ''),
(5022, 7162, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5023, 7162, '_menu_item_xfn', ''),
(5024, 7162, '_menu_item_url', ''),
(5026, 7163, '_menu_item_type', 'post_type'),
(5027, 7163, '_menu_item_menu_item_parent', '6897'),
(5028, 7163, '_menu_item_object_id', '7157'),
(5029, 7163, '_menu_item_object', 'page'),
(5030, 7163, '_menu_item_target', ''),
(5031, 7163, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5032, 7163, '_menu_item_xfn', ''),
(5033, 7163, '_menu_item_url', ''),
(5035, 7164, '_menu_item_type', 'post_type'),
(5036, 7164, '_menu_item_menu_item_parent', '6897'),
(5037, 7164, '_menu_item_object_id', '7153'),
(5038, 7164, '_menu_item_object', 'page'),
(5039, 7164, '_menu_item_target', ''),
(5040, 7164, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5041, 7164, '_menu_item_xfn', ''),
(5042, 7164, '_menu_item_url', ''),
(5044, 7165, '_menu_item_type', 'post_type'),
(5045, 7165, '_menu_item_menu_item_parent', '6897'),
(5046, 7165, '_menu_item_object_id', '7150'),
(5047, 7165, '_menu_item_object', 'page'),
(5048, 7165, '_menu_item_target', ''),
(5049, 7165, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5050, 7165, '_menu_item_xfn', ''),
(5051, 7165, '_menu_item_url', ''),
(5053, 7166, '_menu_item_type', 'post_type'),
(5054, 7166, '_menu_item_menu_item_parent', '6897'),
(5055, 7166, '_menu_item_object_id', '7146'),
(5056, 7166, '_menu_item_object', 'page'),
(5057, 7166, '_menu_item_target', ''),
(5058, 7166, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5059, 7166, '_menu_item_xfn', ''),
(5060, 7166, '_menu_item_url', ''),
(5062, 7167, '_menu_item_type', 'post_type'),
(5063, 7167, '_menu_item_menu_item_parent', '6897'),
(5064, 7167, '_menu_item_object_id', '7144'),
(5065, 7167, '_menu_item_object', 'page'),
(5066, 7167, '_menu_item_target', ''),
(5067, 7167, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5068, 7167, '_menu_item_xfn', ''),
(5069, 7167, '_menu_item_url', ''),
(5071, 7168, '_menu_item_type', 'post_type'),
(5072, 7168, '_menu_item_menu_item_parent', '6897'),
(5073, 7168, '_menu_item_object_id', '7140'),
(5074, 7168, '_menu_item_object', 'page'),
(5075, 7168, '_menu_item_target', ''),
(5076, 7168, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5077, 7168, '_menu_item_xfn', ''),
(5078, 7168, '_menu_item_url', ''),
(5080, 7169, '_menu_item_type', 'post_type'),
(5081, 7169, '_menu_item_menu_item_parent', '6897'),
(5082, 7169, '_menu_item_object_id', '7126'),
(5083, 7169, '_menu_item_object', 'page'),
(5084, 7169, '_menu_item_target', ''),
(5085, 7169, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5086, 7169, '_menu_item_xfn', ''),
(5087, 7169, '_menu_item_url', ''),
(5089, 7170, '_menu_item_type', 'post_type'),
(5090, 7170, '_menu_item_menu_item_parent', '6897'),
(5091, 7170, '_menu_item_object_id', '7121'),
(5092, 7170, '_menu_item_object', 'page'),
(5093, 7170, '_menu_item_target', ''),
(5094, 7170, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5095, 7170, '_menu_item_xfn', ''),
(5096, 7170, '_menu_item_url', ''),
(5098, 7162, '_menu_item_stm_mega', 'disabled'),
(5099, 7162, '_menu_item_stm_mega_cols', 'default'),
(5100, 7162, '_menu_item_stm_mega_col_width', 'default'),
(5101, 7162, '_menu_item_stm_mega_cols_inside', 'default'),
(5102, 7162, '_menu_item_stm_mega_second_col_width', 'default'),
(5103, 7162, '_menu_item_stm_menu_icon', ''),
(5104, 7162, '_menu_item_stm_mega_col_width_banner', 'default'),
(5105, 7162, '_menu_item_stm_menu_image', ''),
(5106, 7162, '_menu_item_stm_mega_textarea', ''),
(5107, 7162, '_menu_item_stm_menu_bg', ''),
(5108, 7170, '_menu_item_stm_mega', 'disabled'),
(5109, 7170, '_menu_item_stm_mega_cols', 'default'),
(5110, 7170, '_menu_item_stm_mega_col_width', 'default'),
(5111, 7170, '_menu_item_stm_mega_cols_inside', 'default'),
(5112, 7170, '_menu_item_stm_mega_second_col_width', 'default'),
(5113, 7170, '_menu_item_stm_menu_icon', ''),
(5114, 7170, '_menu_item_stm_mega_col_width_banner', 'default'),
(5115, 7170, '_menu_item_stm_menu_image', ''),
(5116, 7170, '_menu_item_stm_mega_textarea', ''),
(5117, 7170, '_menu_item_stm_menu_bg', ''),
(5118, 7169, '_menu_item_stm_mega', 'disabled'),
(5119, 7169, '_menu_item_stm_mega_cols', 'default'),
(5120, 7169, '_menu_item_stm_mega_col_width', 'default'),
(5121, 7169, '_menu_item_stm_mega_cols_inside', 'default'),
(5122, 7169, '_menu_item_stm_mega_second_col_width', 'default'),
(5123, 7169, '_menu_item_stm_menu_icon', ''),
(5124, 7169, '_menu_item_stm_mega_col_width_banner', 'default'),
(5125, 7169, '_menu_item_stm_menu_image', ''),
(5126, 7169, '_menu_item_stm_mega_textarea', ''),
(5127, 7169, '_menu_item_stm_menu_bg', ''),
(5128, 7168, '_menu_item_stm_mega', 'disabled'),
(5129, 7168, '_menu_item_stm_mega_cols', 'default'),
(5130, 7168, '_menu_item_stm_mega_col_width', 'default'),
(5131, 7168, '_menu_item_stm_mega_cols_inside', 'default'),
(5132, 7168, '_menu_item_stm_mega_second_col_width', 'default'),
(5133, 7168, '_menu_item_stm_menu_icon', ''),
(5134, 7168, '_menu_item_stm_mega_col_width_banner', 'default'),
(5135, 7168, '_menu_item_stm_menu_image', ''),
(5136, 7168, '_menu_item_stm_mega_textarea', ''),
(5137, 7168, '_menu_item_stm_menu_bg', ''),
(5138, 7167, '_menu_item_stm_mega', 'disabled'),
(5139, 7167, '_menu_item_stm_mega_cols', 'default'),
(5140, 7167, '_menu_item_stm_mega_col_width', 'default'),
(5141, 7167, '_menu_item_stm_mega_cols_inside', 'default'),
(5142, 7167, '_menu_item_stm_mega_second_col_width', 'default'),
(5143, 7167, '_menu_item_stm_menu_icon', ''),
(5144, 7167, '_menu_item_stm_mega_col_width_banner', 'default'),
(5145, 7167, '_menu_item_stm_menu_image', ''),
(5146, 7167, '_menu_item_stm_mega_textarea', ''),
(5147, 7167, '_menu_item_stm_menu_bg', ''),
(5148, 7166, '_menu_item_stm_mega', 'disabled'),
(5149, 7166, '_menu_item_stm_mega_cols', 'default'),
(5150, 7166, '_menu_item_stm_mega_col_width', 'default'),
(5151, 7166, '_menu_item_stm_mega_cols_inside', 'default'),
(5152, 7166, '_menu_item_stm_mega_second_col_width', 'default'),
(5153, 7166, '_menu_item_stm_menu_icon', ''),
(5154, 7166, '_menu_item_stm_mega_col_width_banner', 'default'),
(5155, 7166, '_menu_item_stm_menu_image', ''),
(5156, 7166, '_menu_item_stm_mega_textarea', ''),
(5157, 7166, '_menu_item_stm_menu_bg', ''),
(5158, 7165, '_menu_item_stm_mega', 'disabled'),
(5159, 7165, '_menu_item_stm_mega_cols', 'default'),
(5160, 7165, '_menu_item_stm_mega_col_width', 'default'),
(5161, 7165, '_menu_item_stm_mega_cols_inside', 'default'),
(5162, 7165, '_menu_item_stm_mega_second_col_width', 'default'),
(5163, 7165, '_menu_item_stm_menu_icon', ''),
(5164, 7165, '_menu_item_stm_mega_col_width_banner', 'default'),
(5165, 7165, '_menu_item_stm_menu_image', ''),
(5166, 7165, '_menu_item_stm_mega_textarea', ''),
(5167, 7165, '_menu_item_stm_menu_bg', ''),
(5168, 7164, '_menu_item_stm_mega', 'disabled'),
(5169, 7164, '_menu_item_stm_mega_cols', 'default'),
(5170, 7164, '_menu_item_stm_mega_col_width', 'default'),
(5171, 7164, '_menu_item_stm_mega_cols_inside', 'default'),
(5172, 7164, '_menu_item_stm_mega_second_col_width', 'default'),
(5173, 7164, '_menu_item_stm_menu_icon', ''),
(5174, 7164, '_menu_item_stm_mega_col_width_banner', 'default'),
(5175, 7164, '_menu_item_stm_menu_image', ''),
(5176, 7164, '_menu_item_stm_mega_textarea', ''),
(5177, 7164, '_menu_item_stm_menu_bg', ''),
(5178, 7163, '_menu_item_stm_mega', 'disabled'),
(5179, 7163, '_menu_item_stm_mega_cols', 'default'),
(5180, 7163, '_menu_item_stm_mega_col_width', 'default'),
(5181, 7163, '_menu_item_stm_mega_cols_inside', 'default'),
(5182, 7163, '_menu_item_stm_mega_second_col_width', 'default'),
(5183, 7163, '_menu_item_stm_menu_icon', ''),
(5184, 7163, '_menu_item_stm_mega_col_width_banner', 'default'),
(5185, 7163, '_menu_item_stm_menu_image', ''),
(5186, 7163, '_menu_item_stm_mega_textarea', ''),
(5187, 7163, '_menu_item_stm_menu_bg', ''),
(5188, 7171, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}'),
(5189, 7172, '_wpb_shortcodes_custom_css', '.vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}'),
(5190, 7173, '_wpb_shortcodes_custom_css', '.vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913105377{padding-left: 20px !important;}'),
(5191, 7174, '_wpb_shortcodes_custom_css', '.vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913160646{padding-left: 20px !important;}'),
(5192, 7175, '_wpb_shortcodes_custom_css', '.vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5197, 7180, '_wpb_shortcodes_custom_css', '.vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5198, 7181, '_wpb_shortcodes_custom_css', '.vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5199, 7182, '_wp_attached_file', '2021/04/financial-banner.jpg'),
(5200, 7182, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2021/04/financial-banner.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"financial-banner-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"financial-banner-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"financial-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"financial-banner-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"financial-banner-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"financial-banner-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:29:\"financial-banner-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"financial-banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:28:\"financial-banner-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:28:\"financial-banner-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:28:\"financial-banner-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"financial-banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"financial-banner-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"financial-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"financial-banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"financial-banner-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"financial-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5201, 7183, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618900823839{padding-top: 10px !important;}.vc_custom_1618900669658{padding-left: 20px !important;}.vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5204, 7186, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5205, 7187, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5206, 7188, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5207, 7189, '_wp_attached_file', '2021/04/energy-utility.jpg'),
(5208, 7189, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2021/04/energy-utility.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"energy-utility-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"energy-utility-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"energy-utility-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"energy-utility-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"energy-utility-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"energy-utility-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:27:\"energy-utility-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"energy-utility-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:26:\"energy-utility-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:26:\"energy-utility-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"energy-utility-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"energy-utility-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"energy-utility-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"energy-utility-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"energy-utility-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"energy-utility-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"energy-utility-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5209, 7190, '_wpb_shortcodes_custom_css', '.vc_custom_1618914694284{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/energy-utility.jpg?id=7189) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5210, 7191, '_wp_attached_file', '2021/04/energy-top.jpg'),
(5211, 7191, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:565;s:6:\"height\";i:156;s:4:\"file\";s:22:\"2021/04/energy-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"energy-top-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"energy-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:22:\"energy-top-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:22:\"energy-top-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:20:\"energy-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:22:\"energy-top-320x156.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:22:\"energy-top-255x156.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:22:\"energy-top-350x156.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:22:\"energy-top-358x156.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"energy-top-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"energy-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"energy-top-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"energy-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5212, 7192, '_wpb_shortcodes_custom_css', '.vc_custom_1618914694284{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/energy-utility.jpg?id=7189) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5213, 7193, '_wp_attached_file', '2021/04/2.jpg'),
(5214, 7193, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:13:\"2021/04/2.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"2-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"2-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"2-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:13:\"2-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:13:\"2-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:14:\"2-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:11:\"2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:13:\"2-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:13:\"2-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:13:\"2-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:13:\"2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:13:\"2-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:13:\"2-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"2-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"2-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5215, 7194, '_wpb_shortcodes_custom_css', '.vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915103001{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5216, 7195, '_wp_attached_file', '2021/04/healthcare-top.jpg');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5217, 7195, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:565;s:6:\"height\";i:208;s:4:\"file\";s:26:\"2021/04/healthcare-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"healthcare-top-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"healthcare-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-350x208.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"healthcare-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-320x208.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"healthcare-top-358x208.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"healthcare-top-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"healthcare-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"healthcare-top-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"healthcare-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5218, 7196, '_wpb_shortcodes_custom_css', '.vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(5219, 7197, '_wp_attached_file', '2021/04/healthcare-bottom.jpg'),
(5220, 7197, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2021/04/healthcare-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"healthcare-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"healthcare-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"healthcare-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"healthcare-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:30:\"healthcare-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"healthcare-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"healthcare-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"healthcare-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5221, 7198, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(5222, 7199, '_wpb_shortcodes_custom_css', '.vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618907989228{padding-left: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618915455482{padding-top: 20px !important;}.vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618908652714{padding-top: 40px !important;}'),
(5223, 7200, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5224, 7200, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5225, 7200, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5226, 7200, '_edit_lock', '1618918398:1'),
(5227, 7200, '_edit_last', '1'),
(5228, 7200, 'enable_transparent', 'on'),
(5229, 7200, 'title_box_bg_repeat', 'no-repeat'),
(5230, 7200, 'disable_title', 'on'),
(5231, 7200, '_wpb_vc_js_status', 'true'),
(5232, 7200, 'disable_breadcrumbs', 'on'),
(5233, 7200, '_wp_page_template', 'default'),
(5234, 7200, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5235, 7200, '_wp_desired_post_slug', ''),
(5239, 7201, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5240, 7202, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5241, 7203, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5242, 7204, '_wp_attached_file', '2021/04/industrial-bottom.jpg'),
(5243, 7204, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2021/04/industrial-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"industrial-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"industrial-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"industrial-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"industrial-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:30:\"industrial-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:27:\"industrial-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"industrial-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"industrial-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5244, 7205, '_wp_attached_file', '2021/04/industrial-top.jpg'),
(5245, 7205, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:565;s:6:\"height\";i:350;s:4:\"file\";s:26:\"2021/04/industrial-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"industrial-top-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"industrial-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"industrial-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"industrial-top-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"industrial-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"industrial-top-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"industrial-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"industrial-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"industrial-top-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"industrial-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"industrial-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"industrial-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"industrial-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5246, 7206, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5247, 7207, '_wpb_shortcodes_custom_css', '.vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618908968199{padding-top: 10px !important;}.vc_custom_1618908939151{padding-left: 20px !important;}.vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916386335{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5248, 7208, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5249, 7209, '_wp_attached_file', '2021/04/engineering-bottom.jpg'),
(5250, 7209, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2021/04/engineering-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"engineering-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"engineering-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"engineering-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"engineering-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:31:\"engineering-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:28:\"engineering-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"engineering-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"engineering-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5251, 7210, '_wp_attached_file', '2021/04/engineering-top.jpg'),
(5252, 7210, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:565;s:6:\"height\";i:350;s:4:\"file\";s:27:\"2021/04/engineering-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"engineering-top-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"engineering-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:27:\"engineering-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:27:\"engineering-top-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:25:\"engineering-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:27:\"engineering-top-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:27:\"engineering-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:27:\"engineering-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:27:\"engineering-top-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"engineering-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"engineering-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"engineering-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"engineering-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5253, 7211, '_wpb_shortcodes_custom_css', '.vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618909259938{padding-top: 10px !important;}.vc_custom_1618909229937{padding-left: 20px !important;}.vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618916861169{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5254, 7212, '_wpb_shortcodes_custom_css', '.vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618901699271{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5255, 7214, '_wp_attached_file', '2021/04/insurance-bottom.jpg'),
(5256, 7214, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2021/04/insurance-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"insurance-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"insurance-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"insurance-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"insurance-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:29:\"insurance-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"insurance-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"insurance-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"insurance-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5257, 7215, '_wp_attached_file', '2021/04/insurance-top.jpg'),
(5258, 7215, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:565;s:6:\"height\";i:183;s:4:\"file\";s:25:\"2021/04/insurance-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"insurance-top-300x97.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"insurance-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:25:\"insurance-top-350x183.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:25:\"insurance-top-350x183.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:23:\"insurance-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:25:\"insurance-top-320x183.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:25:\"insurance-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:25:\"insurance-top-350x183.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:25:\"insurance-top-358x183.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"insurance-top-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"insurance-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"insurance-top-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"insurance-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5259, 7216, '_wpb_shortcodes_custom_css', '.vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917173790{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5260, 7218, '_wp_attached_file', '2021/04/media-bottom.jpg'),
(5261, 7218, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2021/04/media-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"media-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"media-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"media-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"media-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"media-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"media-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:25:\"media-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:22:\"media-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:24:\"media-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:24:\"media-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:24:\"media-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"media-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"media-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"media-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"media-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"media-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"media-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5262, 7219, '_wp_attached_file', '2021/04/media-top.jpg'),
(5263, 7219, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:330;s:4:\"file\";s:21:\"2021/04/media-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"media-top-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"media-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:21:\"media-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:21:\"media-top-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:19:\"media-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:21:\"media-top-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:21:\"media-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:21:\"media-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:21:\"media-top-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"media-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"media-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"media-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"media-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5264, 7220, '_wpb_shortcodes_custom_css', '.vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618910883658{padding-top: 10px !important;}.vc_custom_1618910859455{padding-left: 20px !important;}.vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618917619699{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5265, 7222, '_wp_attached_file', '2021/04/airline-bottom.jpg'),
(5266, 7222, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2021/04/airline-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"airline-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"airline-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"airline-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"airline-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"airline-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"airline-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:27:\"airline-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"airline-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:26:\"airline-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:26:\"airline-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"airline-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"airline-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"airline-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"airline-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"airline-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"airline-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5267, 7223, '_wp_attached_file', '2021/04/airline-top.jpg');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5268, 7223, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2021/04/airline-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"airline-top-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"airline-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:23:\"airline-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:23:\"airline-top-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"airline-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:23:\"airline-top-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:23:\"airline-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:23:\"airline-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:23:\"airline-top-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"airline-top-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"airline-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"airline-top-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"airline-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5269, 7224, '_wpb_shortcodes_custom_css', '.vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918156466{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5270, 7225, '_wp_attached_file', '2021/04/consumer-bottom.jpg'),
(5271, 7225, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2021/04/consumer-bottom.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"consumer-bottom-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"consumer-bottom-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"consumer-bottom-1536x419.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"consumer-bottom-2048x559.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-1110x550-croped\";a:4:{s:4:\"file\";s:28:\"consumer-bottom-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:25:\"consumer-bottom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-900x640-croped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"consulting-image-900w\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-900x245.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"consumer-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-600x164.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"consumer-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5272, 7226, '_wp_attached_file', '2021/04/consumer-top.jpg'),
(5273, 7226, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:585;s:6:\"height\";i:330;s:4:\"file\";s:24:\"2021/04/consumer-top.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"consumer-top-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"consumer-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:24:\"consumer-top-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:24:\"consumer-top-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:22:\"consumer-top-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:24:\"consumer-top-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:24:\"consumer-top-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:24:\"consumer-top-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:24:\"consumer-top-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"consumer-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"consumer-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"consumer-top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"consumer-top-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5274, 7227, '_wpb_shortcodes_custom_css', '.vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1618911656485{padding-left: 20px !important;}.vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}.vc_custom_1618918510667{padding-top: 20px !important;}.vc_custom_1618913202395{padding-left: 20px !important;}'),
(5275, 7228, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618552458387{padding-left: 20px !important;}.vc_custom_1618557153424{padding-right: 20px !important;}.vc_custom_1618552985196{padding-left: 20px !important;}.vc_custom_1618557330776{padding-right: 20px !important;}.vc_custom_1618553042340{padding-left: 20px !important;}.vc_custom_1618557739555{padding-right: 20px !important;}.vc_custom_1618553091967{padding-left: 20px !important;}.vc_custom_1618557894400{padding-right: 20px !important;}.vc_custom_1618553351100{padding-left: 20px !important;}.vc_custom_1618558674081{padding-right: 20px !important;}.vc_custom_1618553335629{padding-left: 20px !important;}.vc_custom_1618558491141{padding-right: 20px !important;}.vc_custom_1618553312429{padding-left: 20px !important;}.vc_custom_1618558207015{padding-right: 20px !important;}.vc_custom_1618553191420{padding-left: 20px !important;}.vc_custom_1618558097367{padding-right: 20px !important;}'),
(5278, 7231, '_wpb_shortcodes_custom_css', '.vc_custom_1618552810519{padding-top: 40px !important;}.vc_custom_1618571233090{padding-left: 20px !important;}.vc_custom_1618571633334{padding-left: 20px !important;}.vc_custom_1618571385261{padding-left: 20px !important;}.vc_custom_1618571589948{padding-right: 20px !important;}'),
(5279, 7233, '_wpb_shortcodes_custom_css', '.vc_custom_1618571951669{padding-left: 20px !important;}.vc_custom_1618572144666{padding-left: 20px !important;}'),
(5280, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5281, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5282, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5283, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5284, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5285, 7234, '_wp_page_template', 'default'),
(5287, 7234, 'title_box_bg_image', '5250'),
(5288, 7234, 'title_box_bg_repeat', 'no-repeat'),
(5289, 7234, '_wpb_vc_js_status', 'true'),
(5290, 7234, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5291, 7234, 'title_box_title_color', '#ffffff'),
(5292, 7234, 'title_box_title_line_color', '#ffffff'),
(5296, 7234, '_edit_lock', '1618988598:1'),
(5297, 7234, '_edit_last', '1'),
(5298, 7235, '_wpb_shortcodes_custom_css', '.vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5299, 7234, 'disable_title_box', 'on'),
(5300, 7234, 'disable_title', 'on'),
(5301, 7234, 'disable_breadcrumbs', 'on'),
(5302, 7237, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1549452275528{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5303, 7238, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1485526502077{margin-bottom: 30px !important;}.vc_custom_1555484305136{background-color: #f2f2f2 !important;}.vc_custom_1485599609272{margin-bottom: 35px !important;}.vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1544769868945{margin-bottom: 39px !important;}.vc_custom_1540890523577{margin-bottom: 28px !important;}.vc_custom_1540890529159{margin-bottom: 28px !important;}.vc_custom_1540890545257{margin-bottom: 28px !important;}.vc_custom_1540890550249{margin-bottom: 28px !important;}.vc_custom_1540890555702{margin-bottom: 28px !important;}.vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}.vc_custom_1485524615651{margin-bottom: 22px !important;}.vc_custom_1485525238864{margin-bottom: 23px !important;}.vc_custom_1485525262482{margin-bottom: 30px !important;}.vc_custom_1544769880450{margin-bottom: 43px !important;}.vc_custom_1549443111979{padding-right: 20px !important;}.vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5304, 7239, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618986781301{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5305, 7240, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618986781301{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5306, 7241, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1555483410157{padding-top: 3px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618986781301{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5309, 7243, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618986781301{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5310, 7244, '_wp_attached_file', '2021/04/about-us-qs.jpg'),
(5311, 7244, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:475;s:6:\"height\";i:530;s:4:\"file\";s:23:\"2021/04/about-us-qs.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"about-us-qs-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"about-us-qs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x204-croped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-350x204.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x250-croped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:21:\"about-us-qs-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-320x320-croped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-255x182-croped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-255x182.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"consulting-image-350x195-croped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-350x195.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"consulting-image-358x250-cropped\";a:4:{s:4:\"file\";s:23:\"about-us-qs-358x250.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"about-us-qs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"about-us-qs-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"about-us-qs-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"about-us-qs-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5312, 7245, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618986781301{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5313, 7246, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618986735921{margin-bottom: 28px !important;}.vc_custom_1618987789676{margin-bottom: 28px !important;}.vc_custom_1618986817982{margin-bottom: 28px !important;}.vc_custom_1618986852065{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5324, 7255, '_wpb_shortcodes_custom_css', '.vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}.vc_custom_1618986865836{margin-bottom: 30px !important;}.vc_custom_1451889219674{margin-bottom: -60px !important;}.vc_custom_1618986374799{margin-bottom: 39px !important;}.vc_custom_1618986423636{margin-bottom: 25px !important;}.vc_custom_1618986532730{margin-bottom: 39px !important;}.vc_custom_1618988382088{margin-bottom: 28px !important;}.vc_custom_1618988346009{margin-bottom: 28px !important;}.vc_custom_1618988307315{margin-bottom: 28px !important;}.vc_custom_1618988252507{margin-bottom: 28px !important;}.vc_custom_1545390635044{margin-bottom: 0px !important;}'),
(5347, 7272, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5348, 7273, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5349, 7274, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5350, 7275, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5351, 7276, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989963145{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989972392{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989985880{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5352, 7277, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5353, 7278, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}');
INSERT INTO `qs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5354, 7279, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5355, 7280, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}'),
(5356, 7281, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}.vc_custom_1618992357058{padding-left: 30px !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}'),
(5357, 7282, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1618992357058{padding-left: 30px !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1453959180438{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5358, 7283, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1618992357058{padding-left: 30px !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1618992860192{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5361, 7288, '_menu_item_type', 'post_type'),
(5362, 7288, '_menu_item_menu_item_parent', '0'),
(5363, 7288, '_menu_item_object_id', '7234'),
(5364, 7288, '_menu_item_object', 'page'),
(5365, 7288, '_menu_item_target', ''),
(5366, 7288, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5367, 7288, '_menu_item_xfn', ''),
(5368, 7288, '_menu_item_url', ''),
(5370, 6895, '_wp_old_date', '2021-04-20'),
(5371, 6896, '_wp_old_date', '2021-04-20'),
(5372, 7071, '_wp_old_date', '2021-04-20'),
(5373, 7070, '_wp_old_date', '2021-04-20'),
(5374, 6982, '_wp_old_date', '2021-04-20'),
(5375, 7069, '_wp_old_date', '2021-04-20'),
(5376, 7068, '_wp_old_date', '2021-04-20'),
(5377, 7079, '_wp_old_date', '2021-04-20'),
(5378, 7089, '_wp_old_date', '2021-04-20'),
(5379, 6897, '_wp_old_date', '2021-04-20'),
(5380, 7162, '_wp_old_date', '2021-04-20'),
(5381, 7170, '_wp_old_date', '2021-04-20'),
(5382, 7169, '_wp_old_date', '2021-04-20'),
(5383, 7168, '_wp_old_date', '2021-04-20'),
(5384, 7167, '_wp_old_date', '2021-04-20'),
(5385, 7166, '_wp_old_date', '2021-04-20'),
(5386, 7165, '_wp_old_date', '2021-04-20'),
(5387, 7164, '_wp_old_date', '2021-04-20'),
(5388, 7163, '_wp_old_date', '2021-04-20'),
(5389, 7288, '_menu_item_stm_mega', 'disabled'),
(5390, 7288, '_menu_item_stm_mega_cols', 'default'),
(5391, 7288, '_menu_item_stm_mega_col_width', 'default'),
(5392, 7288, '_menu_item_stm_mega_cols_inside', 'default'),
(5393, 7288, '_menu_item_stm_mega_second_col_width', 'default'),
(5394, 7288, '_menu_item_stm_menu_icon', ''),
(5395, 7288, '_menu_item_stm_mega_col_width_banner', 'default'),
(5396, 7288, '_menu_item_stm_menu_image', ''),
(5397, 7288, '_menu_item_stm_mega_textarea', ''),
(5398, 7288, '_menu_item_stm_menu_bg', ''),
(5399, 6899, '_wp_old_date', '2021-04-20'),
(5400, 6916, '_wp_old_date', '2021-04-20'),
(5401, 7304, '_wp_attached_file', '2019/09/qualstream-logo-final.png'),
(5402, 7304, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:184;s:6:\"height\";i:72;s:4:\"file\";s:33:\"2019/09/qualstream-logo-final.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"qualstream-logo-final-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:31:\"qualstream-logo-final-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"qualstream-logo-final-100x72.png\";s:5:\"width\";i:100;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"qualstream-logo-final-100x72.png\";s:5:\"width\";i:100;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5403, 7305, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618993257871{padding-left: 30px !important;}.vc_custom_1618990330892{padding-right: 40px !important;}.vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1453959190863{margin-bottom: 30px !important;}.vc_custom_1618992860192{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990367381{padding-right: 40px !important;}.vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540893970639{margin-bottom: 30px !important;}.vc_custom_1540893978830{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5404, 7306, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5405, 7307, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1540894008487{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5406, 7308, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622891487448{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5407, 7309, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622891487448{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5408, 7310, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892081287{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5409, 7311, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892308831{margin-bottom: 30px !important;padding-left: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5410, 7312, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1540894035623{margin-bottom: 30px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5411, 7313, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5412, 7315, '_wp_attached_file', '2019/09/qualstream-fav.png'),
(5413, 7315, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2019/09/qualstream-fav.png\";s:5:\"sizes\";a:3:{s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:24:\"qualstream-fav-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"qualstream-fav-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"qualstream-fav-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5414, 7316, '_wp_attached_file', '2019/09/qualstream-fav-1.png'),
(5415, 7316, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:28:\"2019/09/qualstream-fav-1.png\";s:5:\"sizes\";a:3:{s:29:\"consulting-image-50x50-croped\";a:4:{s:4:\"file\";s:26:\"qualstream-fav-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"qualstream-fav-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"qualstream-fav-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5418, 7318, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585567669{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}'),
(5419, 7320, '_wpb_shortcodes_custom_css', '.vc_custom_1459507872760{margin-bottom: 101px !important;}.vc_custom_1617691856423{margin-bottom: -60px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990417011{padding-right: 40px !important;}.vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891427584{padding-left: 10px !important;}.vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894014390{margin-bottom: 30px !important;}.vc_custom_1452504967583{margin-bottom: 33px !important;}.vc_custom_1618990431243{padding-right: 40px !important;}.vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1622891436053{padding-left: 10px !important;}.vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}.vc_custom_1540894042271{margin-bottom: 30px !important;}.vc_custom_1545392879722{margin-bottom: 0px !important;}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_posts`
--

CREATE TABLE `qs_posts` (
  `ID` bigint UNSIGNED NOT NULL,
  `post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_posts`
--

INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2021-04-05 11:41:38', '2021-04-05 11:41:38', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Application development and Maintenance', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2021-04-06 11:05:51', '2021-04-06 11:05:51', '', 0, 'http://qualstream.net/?p=1', 0, 'post', '', 1),
(2, 1, '2021-04-05 11:41:38', '2021-04-05 11:41:38', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://qualstream.net/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2021-04-05 11:41:38', '2021-04-05 11:41:38', '', 0, 'http://qualstream.net/?page_id=2', 0, 'page', '', 0),
(3, 1, '2021-04-05 11:41:38', '2021-04-05 11:41:38', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://qualstream.net.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2021-04-05 11:41:38', '2021-04-05 11:41:38', '', 0, 'http://qualstream.net/?page_id=3', 0, 'page', '', 0),
(6, 1, '2021-04-05 12:41:09', '2021-04-05 12:41:09', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@qualstream.net>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@qualstream.net>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2021-04-05 12:41:09', '2021-04-05 12:41:09', '', 0, 'http://qualstream.net/?post_type=wpcf7_contact_form&p=6', 0, 'wpcf7_contact_form', '', 0),
(7, 1, '2021-04-05 12:41:12', '2021-04-05 12:41:12', '', 'woocommerce-placeholder', '', 'inherit', 'open', 'closed', '', 'woocommerce-placeholder', '', '', '2021-04-05 12:41:12', '2021-04-05 12:41:12', '', 0, 'http://qualstream.net/wp-content/uploads/2021/04/woocommerce-placeholder.png', 0, 'attachment', 'image/png', 0),
(8, 1, '2021-04-05 12:41:15', '2021-04-05 12:41:15', '', 'Shop', '', 'publish', 'closed', 'closed', '', 'shop', '', '', '2021-04-05 12:41:15', '2021-04-05 12:41:15', '', 0, 'http://qualstream.net/shop/', 0, 'page', '', 0),
(9, 1, '2021-04-05 12:41:15', '2021-04-05 12:41:15', '<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->', 'Cart', '', 'publish', 'closed', 'closed', '', 'cart', '', '', '2021-04-05 12:41:15', '2021-04-05 12:41:15', '', 0, 'http://qualstream.net/cart/', 0, 'page', '', 0),
(10, 1, '2021-04-05 12:41:15', '2021-04-05 12:41:15', '<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->', 'Checkout', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2021-04-05 12:41:15', '2021-04-05 12:41:15', '', 0, 'http://qualstream.net/checkout/', 0, 'page', '', 0),
(11, 1, '2021-04-05 12:41:15', '2021-04-05 12:41:15', '<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->', 'My account', '', 'publish', 'closed', 'closed', '', 'my-account', '', '', '2021-04-05 12:41:15', '2021-04-05 12:41:15', '', 0, 'http://qualstream.net/my-account/', 0, 'page', '', 0),
(12, 1, '2020-06-13 09:05:21', '2020-06-13 09:05:21', '', 'woocommerce-placeholder', '', 'inherit', 'open', 'closed', '', 'woocommerce-placeholder-2', '', '', '2020-06-13 09:05:21', '2020-06-13 09:05:21', '', 0, 'http://qualstream.net/wp-content/uploads/2020/06/woocommerce-placeholder.png', 0, 'attachment', 'image/png', 0),
(41, 1, '2013-06-07 10:59:15', '2013-06-07 10:59:15', '', 'Variation #41 of Ship Your Idea', '', 'publish', 'open', 'open', '', 'product-40-variation', '', '', '2013-06-07 10:59:15', '2013-06-07 10:59:15', '', 889, 'http://demo2.woothemes.com/woocommerce/?product_variation=product-40-variation', 0, 'product_variation', '', 0),
(56, 1, '2013-06-07 11:07:19', '2013-06-07 11:07:19', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Lords of Strategy', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'ninja-silhouette-2', '', '', '2013-06-07 11:07:19', '2013-06-07 11:07:19', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=56', 0, 'product', '', 0),
(131, 1, '2015-12-25 10:25:17', '2015-12-25 10:25:17', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392497214{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Stick with Your Concept but Do Your Homework', 'With hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping.', 'publish', 'open', 'open', '', 'stick-with-your-concept-but-do-your-homework', '', '', '2015-12-25 10:25:17', '2015-12-25 10:25:17', '', 0, 'http://consulting.stylemixthemes.com/demo/?p=131', 0, 'post', '', 0),
(133, 1, '2015-12-25 10:25:29', '2015-12-25 10:25:29', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1540903917909{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392485870{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Three Social Media Hacks for the Busy Entrepreneur', 'The teams focused their efforts on a few of the highest-value S&OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.', 'publish', 'open', 'open', '', 'three-social-media-hacks-for-the-busy-entrepreneur', '', '', '2015-12-25 10:25:29', '2015-12-25 10:25:29', '', 0, 'http://consulting.stylemixthemes.com/demo/?p=133', 0, 'post', '', 0),
(135, 1, '2015-12-25 10:25:45', '2015-12-25 10:25:45', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1452689908335{margin-bottom: 20px !important;}\"]Many businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset. What is this highly valuable asset? Its own people. Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Becoming an organization capable of answering this question can benefit in a number of ways:[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392473575{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Harvest great ideas from your company’s best assets', 'In particular, the initial state of the company’s sales and operations planning capabilities limited their ability to account for demand variability or raw material lead times in production and distribution. Improve sales and operations and production planning.', 'publish', 'open', 'open', '', 'harvest-great-ideas-from-your-companys-best-assets', '', '', '2015-12-25 10:25:45', '2015-12-25 10:25:45', '', 0, 'http://consulting.stylemixthemes.com/demo/?p=135', 0, 'post', '', 0),
(311, 1, '2016-01-05 11:11:32', '2016-01-05 11:11:32', '[vc_row css=\".vc_custom_1451998133493{margin-bottom: 30px !important;}\"][vc_column][vc_wp_custommenu nav_menu=\"69\" css=\".vc_custom_1453460281829{margin-bottom: 30px !important;}\" el_class=\"mb-30\"][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1559381175489{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1559381183429{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row][vc_column][stm_testimonials count=\"1\"][/vc_column][/vc_row]', 'VC Right Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-sidebar', '', '', '2016-01-05 11:11:32', '2016-01-05 11:11:32', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_vc_sidebar&amp;p=311', 0, 'stm_vc_sidebar', '', 0),
(324, 1, '2016-01-06 09:37:51', '2016-01-06 09:37:51', '[vc_row css=\".vc_custom_1459507825184{margin-bottom: 40px !important;}\"][vc_column][stm_testimonials count=\"6\" per_row=\"2\" style=\"style_2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545393752493{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Testimonials 1', '', 'publish', 'closed', 'closed', '', 'testimonials-page', '', '', '2016-01-06 09:37:51', '2016-01-06 09:37:51', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=324', 0, 'page', '', 0),
(330, 1, '2016-01-06 09:57:48', '2016-01-06 09:57:48', '', 'Bernard Lesser', 'With just a few tweaks our website looked almost nothing like the template; it looked completely like something we had made from scratch for our company.', 'publish', 'closed', 'closed', '', 'bernard-lesser', '', '', '2016-01-06 09:57:48', '2016-01-06 09:57:48', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=330', 0, 'stm_testimonials', '', 0),
(331, 1, '2016-01-06 10:04:25', '2016-01-06 10:04:25', '', 'Adam Buschemi', 'Since joining Consulting WP in 1998, Alice has developed extensive experience in large-scale transformation and strategy work, often in connection with mergers.', 'publish', 'closed', 'closed', '', 'adam-buschemi', '', '', '2016-01-06 10:04:25', '2016-01-06 10:04:25', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=331', 0, 'stm_testimonials', '', 0),
(332, 1, '2016-01-06 10:05:02', '2016-01-06 10:05:02', '', 'Bianca Hammound', 'Prior to joining Consulting WP, Bianca ran a project management software firm in the U.S. and worked in consulting and investment banking.', 'publish', 'closed', 'closed', '', 'bianca-hammound', '', '', '2016-01-06 10:05:02', '2016-01-06 10:05:02', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=332', 0, 'stm_testimonials', '', 0),
(333, 1, '2016-01-06 10:09:49', '2016-01-06 10:09:49', '', 'Christian Marcil', 'Consulting WordPress Theme is the way to go for financial institutions. We take pride in being a transparent and perfection oriented organization.', 'publish', 'closed', 'closed', '', 'cintia-le-corre', '', '', '2016-01-06 10:09:49', '2016-01-06 10:09:49', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=333', 0, 'stm_testimonials', '', 0),
(334, 1, '2018-09-06 10:10:16', '2018-09-06 10:10:16', '', 'Cintia Le Corre', 'We thought a lot before choosing the Financial WordPress Theme because we wanted to sure our investment would yield results.', 'publish', 'closed', 'closed', '', 'christian-marcil', '', '', '2018-09-06 10:10:16', '2018-09-06 10:10:16', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=334', 0, 'stm_testimonials', '', 0),
(335, 1, '2018-12-30 10:10:40', '2018-12-30 10:10:40', '', 'Donald Simpson', 'Consulting theme is an invaluable partner. Our teams have collaborated to support the growing field of practitioners using collective impact.', 'publish', 'closed', 'closed', '', 'donald-simpson', '', '', '2018-12-30 10:10:40', '2018-12-30 10:10:40', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=335', 0, 'stm_testimonials', '', 0),
(336, 1, '2016-01-06 10:11:12', '2016-01-06 10:11:12', '', 'Debbie Kübel-Sorger', 'The demands for financial institutions have changed a bit. Obfuscation is no longer accepted, which is why this Business WordPress Theme is so perfect.', 'publish', 'closed', 'closed', '', 'debbie-kubel-sorger', '', '', '2016-01-06 10:11:12', '2016-01-06 10:11:12', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=336', 0, 'stm_testimonials', '', 0),
(337, 1, '2018-04-06 10:11:28', '2018-04-06 10:11:28', '', 'Amanda Seyfried', 'We were amazed by how little effort was required on our part to have Consulting WP prepare these materials. We exchanged a few phone calls.', 'publish', 'closed', 'closed', '', 'amanda-seyfried-2', '', '', '2018-04-06 10:11:28', '2018-04-06 10:11:28', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_testimonials&amp;p=337', 0, 'stm_testimonials', '', 0),
(344, 1, '2016-01-06 11:31:27', '2016-01-06 11:31:27', '[vc_row css=\".vc_custom_1459506276575{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][rev_slider alias=\"about_us_slider\"][vc_column_text css=\".vc_custom_1549462784180{margin-top: 45px !important;}\"]\n<h2>Our approach</h2>\nConsulting WP approaches every client’s business as if it were our own. We believe a consulting firm should be more than an advisor. We put ourselves in our clients’ shoes, align our incentives with their objectives, and collaborate to unlock the full potential of their business. This builds deep and enjoyable relationships.\n\nThe right approach is necessary for the right outcome. Consulting WP approaches work by applying its external knowledge to your organization’s internal way of doing work. We know that in order to maximize the potential of success for your company we need to shape our expert advice in a way that applies to your way of doing business. This allows us to create rich relationships with our clients.[/vc_column_text][vc_row_inner css=\".vc_custom_1455886051719{margin-bottom: 10px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"15\" icon_width=\"78\" title=\"Travel and Aviation\nConsulting\"]Armed with statistical knowledge, technical expertise, and fact based prediction, we allow your business to truly soar. [/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_width=\"78\" title=\"Business Services\nConsulting\"]We help you shape and position your business services in a way that enhances the output of your clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1455886085190{margin-bottom: 10px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-cart\" style=\"icon_left\" icon_size=\"21\" icon_width=\"78\" title=\"Consumer Products\nConsulting\"]We help companies dealing in consumer products create and present products that perfectly blend in with the zeitgeist.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"23\" icon_width=\"78\" title=\"Financial Services\nConsulting\"]Our financial experts help you analyze financial data, to create a rock steady financial foundation.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-lamp\" style=\"icon_left\" icon_size=\"27\" icon_width=\"78\" title=\"Energy and Environment\nConsulting\"]We work with energy companies to increase their efficiency and eliminate any environmentally harmful practices.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" enable_hexagon=\"enable\" enable_hexagon_animation=\"enable\" icon=\"stm-truck\" style=\"icon_left\" icon_size=\"19\" icon_width=\"78\" title=\"TAX Services\nConsulting\"]We are a company that offers design and build services for you from initial sketches to the final construction.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390404206{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our approach', '', 'publish', 'closed', 'closed', '', 'our-approach', '', '', '2016-01-06 11:31:27', '2016-01-06 11:31:27', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=344', 0, 'page', '', 0),
(377, 1, '2016-01-07 04:23:21', '2016-01-07 04:23:21', '[vc_row css=\".vc_custom_1540962018980{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"383\" img_size=\"full\" css=\".vc_custom_1452141433663{margin-bottom: 46px !important;}\"][vc_column_text css=\".vc_custom_1455883809051{margin-bottom: 50px !important;}\"]\n<h2>company history</h2>\nConsulting WP has a long and storied history in the world of finance. We have been pioneers in the industry for many years and are known for taking innovative steps. We are very proud of our achievements and all the people who led us here.[/vc_column_text][stm_company_history][stm_company_history_item year=\"1985\" title=\"start with a small service\" description=\"This was the time when we started our company. We had no idea how far we would go, we weren’t even sure that we would be able to survive for a few years. What drove us to start the company was the understanding that we could provide a service no one else was providing.\"][stm_company_history_item year=\"1990\" title=\"first employees\" description=\"This was the first period when Consulting WP actually felt like it would stick around for a while. We realized we were growing more stable and expanding at the same time. We needed a new office as we had severely outgrown the last one. We started scouting for a new location.\"][stm_company_history_item year=\"2001\" title=\"first recognition\" description=\"By this time we were a well known name within the industry. We had been prominent members of the industry for more than 16 years and worked for some of the biggest clients in the industry; we weren’t dismissed by anyone because we could not be dismissed by anyone.\"][stm_company_history_item year=\"2015\" title=\"consulting wp — corporation or family\" description=\"Our journey has only brought us higher. Information Technology completely changes the way we analyze and present data. We have embraced new technologies and have ensured that our clients receive cutting edge analytics. As we go on towards the future we intend to exploit the full potential of new technologies to power our services.\"][/stm_company_history][stm_spacing sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390392115{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Company history', '', 'publish', 'closed', 'closed', '', 'company-history', '', '', '2016-01-07 04:23:21', '2016-01-07 04:23:21', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=377', 0, 'page', '', 0),
(390, 1, '2016-01-07 05:57:45', '2016-01-07 05:57:45', '[vc_row css=\".vc_custom_1459506306543{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_row_inner css=\".vc_custom_1452152300724{margin-bottom: 46px !important;}\"][vc_column_inner][stm_partner style=\"style_2\" title=\"Aramiz Company\" logo=\"669\" description=\"We aren’t such an agile and dependable organization just because of our own team; we also have a fantastic network of partners who compliment our services and allow us to work harder, better, faster, and stronger.\" link=\"url:%23||\" position=\"Athletic Performance Tracking Devices\nEscondido, CA\" css=\".vc_custom_1456122558201{margin-bottom: 50px !important;}\"][stm_partner style=\"style_2\" title=\"Adup Media LLC\" logo=\"668\" description=\"Our partners are the top companies in their own respective industries, and are known to deliver high quality services and products. Our partners help us deliver unparalleled services to our clients. The reality is that no company can survive by its own in the age of information technology.\" link=\"url:%23||\" position=\"Media &amp; Marketing Consulting\nWalnut Creek, CA\" css=\".vc_custom_1456122574722{margin-bottom: 50px !important;}\"][stm_partner style=\"style_2\" title=\"Green Shield\" logo=\"672\" description=\"Strategic partnerships allow companies to expand and specialize without limitations. Instead of spending a lot of money and time perfecting a new thing, we prefer to perfect our own services and call in the experts for other tasks when needed. We are the best financial consultants for our clients.\" link=\"url:%23||\" position=\"Heart Transplant Monitoring Technology\nCharlotte, NC\" css=\".vc_custom_1456122588036{margin-bottom: 50px !important;}\"][stm_partner style=\"style_2\" title=\"Primo Software\" logo=\"673\" description=\"Our customers trust us so much that they often come to us with problems beyond the scope of financial consultancy. Since they know that we have their best business interests at heart they want us to help them with such problems.\" link=\"url:%23||\" position=\"Software Development\nManitowoc, WI\" css=\".vc_custom_1456122602434{margin-bottom: 50px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390415652{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our partners', '', 'publish', 'closed', 'closed', '', 'our-partners', '', '', '2016-01-07 05:57:45', '2016-01-07 05:57:45', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=390', 0, 'page', '', 0),
(408, 1, '2016-01-07 09:31:53', '2016-01-07 09:31:53', '[vc_row css=\".vc_custom_1459506339266{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1549462825715{margin-bottom: 52px !important;}\"]\n<h2>Careers</h2>\nConsulting WP is the name of a collection of individuals who believe in excellence. We specialize in hiring people who have the drive to succeed and the will to implement the discipline required to succeed. We focus on nurturing our team and providing our team an environment that is conductive to creative thought. We focus on eliminating stress and pressure so our team can think clearly and creatively.[/vc_column_text][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\" css=\".vc_custom_1453467174989{margin-bottom: 60px !important;}\"][vc_tta_section title=\"What does Consulting WP do?\" tab_id=\"1452160548343-003e17f2-760d\"][vc_column_text]When you work at Consulting WP, you get to be part of a team that is known for its performance. We are efficiency driven professionals who focus on the endgame.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What industries do you specialize in?\" tab_id=\"1452160738660-5468e659-6776\"][vc_column_text]Consulting WP focuses not just on recruiting individuals that are performance oriented but also on developing them. To us it is important to ensure that our clients are satisfied and are being served with the care and respect they deserve.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Can you help us raise money?\" tab_id=\"1452160747001-6a933eea-21de\"][vc_column_text]Once we see the potential in someone and recruit them we ensure that they get an environment in which they can actually realize their potential. Stress and pressure are the enemies of productivity and creativity, we aim to decrease them as much as possible.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][vc_row_inner css=\".vc_custom_1453463400247{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"423\" size=\"380\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading text=\"Benefits and rewards\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1549463977651{margin-bottom: 15px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]We care for our clients\' business as our business. We think and act like business partners, not academic advisors. We share our clients\' aspirations, work to understand their reality, and align our incentives with their objectives — so they know we\'re in this together.\n\nPersonal impact, mentoring, and teamwork are just a few of the benefits of building a career at Consulting WP.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Open positions\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1549463987853{margin-bottom: 31px !important;}\" el_class=\"no_stripe\"][stm_vacancies][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390382571{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Careers', '', 'publish', 'closed', 'closed', '', 'careers', '', '', '2016-01-07 09:31:53', '2016-01-07 09:31:53', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=408', 0, 'page', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(430, 1, '2016-01-07 13:00:54', '2016-01-07 13:00:54', '[vc_row css=\".vc_custom_1459506394637{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text]Consulting WordPress Theme is always looking for talented people to become its team members. We realize that productive people are always a good addition to our organization. So if you have the financial acumen and the passion to work with some of the biggest companies in the world, join in![/vc_column_text][stm_about_vacancy css=\".vc_custom_1453112586637{margin-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1453114022217{margin-bottom: 60px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]\n<h4 class=\"no_stripe\">Responsibilities</h4>\n<span style=\"font-size: 13px; line-height: 22px; color: #808080;\">Candidates can look forward to regular client contact, a role in business development and proposal writing/methodology creation, and a</span>\n<ul style=\"color: #222222; font-size: 13px; line-height: 22px;\">\n	<li>Assisting senior consultants;</li>\n	<li>Providing legal and scholarly research;</li>\n	<li>Creating reports &amp; Gathering Data</li>\n	<li>Analyzing Data and understanding results</li>\n	<li>Arranging client coordination</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}\"]\n<h4 class=\"no_stripe\">Skills/Experience</h4>\n<ul>\n	<li>Limited experience at consultancy preferred;</li>\n	<li>Great interpersonal communication skills;</li>\n	<li>Keen eye for spotting data trends;</li>\n	<li>Great analytical skills;</li>\n	<li>A keen grasp of information technology;</li>\n	<li>Professional demeanor;</li>\n	<li>Personal accountability and strong work ethic;</li>\n	<li>Professional, able to interact with vendors/clients;</li>\n	<li>Positive, “can do” attitude.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_vacancy_bottom][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23ffffff|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_link=\"url:%23||\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1459505851233{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Programme Engineering Manager', '', 'publish', 'closed', 'closed', '', 'flot-export-document-processing-agent', '', '', '2016-01-07 13:00:54', '2016-01-07 13:00:54', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_careers&amp;p=430', 0, 'stm_careers', '', 0),
(432, 1, '2016-01-08 06:22:35', '2016-01-08 06:22:35', '[vc_row css=\".vc_custom_1459506413571{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text]Consulting WordPress Theme is always looking for talented people to become its team members. We realize that productive people are always a good addition to our organization. So if you have the financial acumen and the passion to work with some of the biggest companies in the world, join in![/vc_column_text][stm_about_vacancy css=\".vc_custom_1453112586637{margin-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1453114022217{margin-bottom: 60px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]\n<h4 class=\"no_stripe\">Responsibilities</h4>\n<span style=\"font-size: 13px; line-height: 22px; color: #808080;\">Candidates can look forward to regular client contact, a role in business development and proposal writing/methodology creation, and a</span>\n<ul style=\"color: #222222; font-size: 13px; line-height: 22px;\">\n	<li>Assisting senior consultants;</li>\n	<li>Providing legal and scholarly research;</li>\n	<li>Creating reports &amp; Gathering Data</li>\n	<li>Analyzing Data and understanding results</li>\n	<li>Arranging client coordination</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}\"]\n<h4 class=\"no_stripe\">Skills/Experience</h4>\n<ul>\n	<li>Limited experience at consultancy preferred;</li>\n	<li>Great interpersonal communication skills;</li>\n	<li>Keen eye for spotting data trends;</li>\n	<li>Great analytical skills;</li>\n	<li>A keen grasp of information technology;</li>\n	<li>Professional demeanor;</li>\n	<li>Personal accountability and strong work ethic;</li>\n	<li>Professional, able to interact with vendors/clients;</li>\n	<li>Positive, “can do” attitude.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_vacancy_bottom][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23ffffff|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_link=\"url:%23||\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1459505851233{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Deputy Principal Construction Manager', '', 'publish', 'closed', 'closed', '', 'deputy-principal-construction-manager', '', '', '2016-01-08 06:22:35', '2016-01-08 06:22:35', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_careers&amp;p=432', 0, 'stm_careers', '', 0),
(433, 1, '2016-01-08 06:23:03', '2016-01-08 06:23:03', '[vc_row css=\".vc_custom_1459506432117{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text]Consulting WordPress Theme is always looking for talented people to become its team members. We realize that productive people are always a good addition to our organization. So if you have the financial acumen and the passion to work with some of the biggest companies in the world, join in![/vc_column_text][stm_about_vacancy css=\".vc_custom_1453112586637{margin-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1453114022217{margin-bottom: 60px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]\n<h4 class=\"no_stripe\">Responsibilities</h4>\n<span style=\"font-size: 13px; line-height: 22px; color: #808080;\">Candidates can look forward to regular client contact, a role in business development and proposal writing/methodology creation, and a</span>\n<ul style=\"color: #222222; font-size: 13px; line-height: 22px;\">\n	<li>Assisting senior consultants;</li>\n	<li>Providing legal and scholarly research;</li>\n	<li>Creating reports &amp; Gathering Data</li>\n	<li>Analyzing Data and understanding results</li>\n	<li>Arranging client coordination</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}\"]\n<h4 class=\"no_stripe\">Skills/Experience</h4>\n<ul>\n	<li>Limited experience at consultancy preferred;</li>\n	<li>Great interpersonal communication skills;</li>\n	<li>Keen eye for spotting data trends;</li>\n	<li>Great analytical skills;</li>\n	<li>A keen grasp of information technology;</li>\n	<li>Professional demeanor;</li>\n	<li>Personal accountability and strong work ethic;</li>\n	<li>Professional, able to interact with vendors/clients;</li>\n	<li>Positive, “can do” attitude.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_vacancy_bottom][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23ffffff|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_link=\"url:%23||\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1459505851233{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Senior Programme Manager', '', 'publish', 'closed', 'closed', '', 'senior-programme-manager', '', '', '2016-01-08 06:23:03', '2016-01-08 06:23:03', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_careers&amp;p=433', 0, 'stm_careers', '', 0),
(434, 1, '2019-11-08 06:23:37', '2019-11-08 06:23:37', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"17\" md_spacing=\"17\" sm_spacing=\"17\" xs_spacing=\"17\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1459506457265{margin-bottom: 100px !important;}\"][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text]Consulting WordPress Theme is always looking for talented people to become its team members. We realize that productive people are always a good addition to our organization. So if you have the financial acumen and the passion to work with some of the biggest companies in the world, join in![/vc_column_text][stm_about_vacancy css=\".vc_custom_1453112586637{margin-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1574412790143{margin-bottom: 30px !important;}\"][vc_column_inner][vc_custom_heading stripe_pos=\"hide\" text=\"Responsibilities\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text]Candidates can look forward to regular client contact, a role in business development and proposal writing/methodology creation, and a[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1574412851264{margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li>Assisting senior consultants;</li>\n 	<li>Providing legal and scholarly research;</li>\n 	<li>Creating reports &amp; Gathering Data</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li>Analyzing Data and understanding results</li>\n 	<li>Arranging client coordination</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1574412906792{margin-right: 0px !important;margin-left: 0px !important;padding-top: 25px !important;padding-right: 30px !important;padding-bottom: 25px !important;padding-left: 30px !important;background-color: #f2f4fa !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"Skills/Experience\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text]\n<ul>\n 	<li>Limited experience at consultancy preferred;</li>\n 	<li>Great interpersonal communication skills;</li>\n 	<li>Keen eye for spotting data trends;</li>\n 	<li>Great analytical skills;</li>\n 	<li>A keen grasp of information technology;</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"53\" md_spacing=\"53\" sm_spacing=\"53\" xs_spacing=\"30\"][vc_column_text]\n<ul>\n 	<li>Professional demeanor;</li>\n 	<li>Personal accountability and strong work ethic;</li>\n 	<li>Professional, able to interact with vendors/clients;</li>\n 	<li>Positive, “can do” attitude.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_vacancy_bottom][/vc_column][/vc_row]', 'Senior Industrial Planner', '', 'publish', 'closed', 'closed', '', 'senior-industrial-planner', '', '', '2019-11-08 06:23:37', '2019-11-08 06:23:37', '', 0, 'http://consulting.stylemixthemes.com/?post_type=stm_careers&amp;p=434', 0, 'stm_careers', '', 0),
(435, 1, '2016-01-08 06:24:04', '2016-01-08 06:24:04', '[vc_row css=\".vc_custom_1459506373488{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text]Consulting WordPress Theme is always looking for talented people to become its team members. We realize that productive people are always a good addition to our organization. So if you have the financial acumen and the passion to work with some of the biggest companies in the world, join in![/vc_column_text][stm_about_vacancy css=\".vc_custom_1453112586637{margin-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1453114022217{margin-bottom: 60px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456121948446{padding-top: 13px !important;padding-right: 40px !important;padding-bottom: 34px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]\n<h4 class=\"no_stripe\">Responsibilities</h4>\n<span style=\"font-size: 13px; line-height: 22px; color: #808080;\">Candidates can look forward to regular client contact, a role in business development and proposal writing/methodology creation, and a</span>\n<ul style=\"color: #222222; font-size: 13px; line-height: 22px;\">\n 	<li>Assisting senior consultants;</li>\n 	<li>Providing legal and scholarly research;</li>\n 	<li>Creating reports &amp; Gathering Data</li>\n 	<li>Analyzing Data and understanding results</li>\n 	<li>Arranging client coordination</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1456122016220{border-top-width: 3px !important;padding-top: 10px !important;border-top-color: #222222 !important;border-top-style: solid !important;}\"]\n<h4 class=\"no_stripe\">Skills/Experience</h4>\n<ul>\n 	<li>Limited experience at consultancy preferred;</li>\n 	<li>Great interpersonal communication skills;</li>\n 	<li>Keen eye for spotting data trends;</li>\n 	<li>Great analytical skills;</li>\n 	<li>A keen grasp of information technology;</li>\n 	<li>Professional demeanor;</li>\n 	<li>Personal accountability and strong work ethic;</li>\n 	<li>Professional, able to interact with vendors/clients;</li>\n 	<li>Positive, “can do” attitude.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_vacancy_bottom][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390826746{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Deputy Principal Construction Manager', '', 'publish', 'closed', 'closed', '', 'deputy-principal-construction-manager-2', '', '', '2016-01-08 06:24:04', '2016-01-08 06:24:04', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_careers&amp;p=435', 0, 'stm_careers', '', 0),
(440, 1, '2016-01-08 07:17:26', '2016-01-08 07:17:26', '[vc_row css=\".vc_custom_1459506521748{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" css=\".vc_custom_1452247174165{margin-bottom: 30px !important;}\"][stm_staff_list count=\"6\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390431613{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our team list', '', 'publish', 'closed', 'closed', '', 'our-team-list', '', '', '2016-01-08 07:17:26', '2016-01-08 07:17:26', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=440', 0, 'page', '', 0),
(448, 1, '2016-01-08 09:48:42', '2016-01-08 09:48:42', '[vc_row css=\".vc_custom_1459506656739{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Gina Kennedy\" use_theme_fonts=\"yes\" subtitle=\"Administrator\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1534399436978{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771841586{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771845846{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771857057{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|order_by:ID|order:ASC|post_type:post\" posts_per_row=\"2\" css=\".vc_custom_1555505470049{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1545640929386{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545640825982{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Gina Kennedy', 'As we help other companies grow, she helps us grow. She handles all the internal work at WP consulting and ensures that employees and stakeholders are happy. Our low turnover rate and satisfied employees show that she is doing a fantastic job.', 'publish', 'closed', 'closed', '', 'gina-kennedy', '', '', '2016-01-08 09:48:42', '2016-01-08 09:48:42', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=448', 0, 'stm_staff', '', 0),
(449, 1, '2016-01-08 09:19:00', '2016-01-08 09:19:00', '[vc_row css=\".vc_custom_1459506633330{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Fernando Torres\" use_theme_fonts=\"yes\" subtitle=\"Tax Consultant\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1534399445426{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading stripe_pos=\"hide\" text=\"Areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1555493184421{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading stripe_pos=\"hide\" text=\"Education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1555493192042{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771905024{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|order_by:ID|order:ASC|post_type:post\" posts_per_row=\"2\" css=\".vc_custom_1555493639458{margin-bottom: 27px !important;}\" img_size=\"full\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1545640890995{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545640872348{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Fernando Torres', 'Tax laws and regulations are some of the most complicated and infuriating parts of the financial industry. Which is why we are lucky to have Him as our head tax consultant. He is the master of the tax domain, and knows as much about taxes as humanly possible.', 'publish', 'closed', 'closed', '', 'fernando-torres', '', '', '2016-01-08 09:19:00', '2016-01-08 09:19:00', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=449', 0, 'stm_staff', '', 0),
(458, 1, '2016-01-08 10:56:20', '2016-01-08 10:56:20', '[vc_row css=\".vc_custom_1459506678667{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Chief Marketing Officer\" use_theme_fonts=\"yes\" subtitle=\"Chief Marketing Officer\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1534399429629{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771804013{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771808356{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771815679{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|order_by:ID|order:ASC\" posts_per_row=\"2\" css=\".vc_custom_1555505534359{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1545640763829{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545640749399{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Dennis Norris', 'He has helped Business WordPress Theme reach new heights and enter new markets. His skills of understanding market perception are unparalleled, and he has positioned Consulting WP as the best choice for clients.', 'publish', 'closed', 'closed', '', 'dennis-norris', '', '', '2016-01-08 10:56:20', '2016-01-08 10:56:20', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=458', 0, 'stm_staff', '', 0),
(459, 1, '2016-01-08 11:25:39', '2016-01-08 11:25:39', '[vc_row css=\".vc_custom_1459506697614{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Ashley Hardy\" use_theme_fonts=\"yes\" subtitle=\"VP Sales and Marketing\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1534399396761{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771761492{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771766676{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771775975{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|order_by:ID|order:ASC|post_type:post\" posts_per_row=\"2\" css=\".vc_custom_1555505523708{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1545640736041{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545640700637{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Ashley Hardy', 'She is an accomplished business developer. Her skills at creating relationships with clients are legendary; her pitches are amazing, and her technical knowledge is awesome. She is style and substance both and has helped grow our clientele.', 'publish', 'closed', 'closed', '', 'ashley-hardy', '', '', '2016-01-08 11:25:39', '2016-01-08 11:25:39', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=459', 0, 'stm_staff', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(460, 1, '2016-01-08 11:26:57', '2016-01-08 11:26:57', '[vc_row css=\".vc_custom_1459506715941{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Clark Roberts\" use_theme_fonts=\"yes\" subtitle=\"Chief Finance Officer\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1534399387762{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771701244{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_custom_heading stripe_pos=\"hide\" text=\"education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771708811{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771716333{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|order_by:ID|order:ASC|post_type:post\" posts_per_row=\"2\" css=\".vc_custom_1555505511182{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1545640645141{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545640622485{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Clark Roberts', 'Being the CFO in the Financial Industry is a tough task, thankfully he was here to man the helm and lead the company where it needed to go. He is known for his skills at analyzing data, some say he can create a full financial report in his head as soon as he looks at the data. ', 'publish', 'closed', 'closed', '', 'clark-roberts', '', '', '2016-01-08 11:26:57', '2016-01-08 11:26:57', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=460', 0, 'stm_staff', '', 0),
(461, 1, '2016-01-08 11:27:30', '2016-01-08 11:27:30', '[vc_row css=\".vc_custom_1459506735567{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Brandon Copperfield\" use_theme_fonts=\"yes\" subtitle=\"Founder &amp; CEO\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_single_image source=\"featured_image\" img_size=\"560x560\" css=\".vc_custom_1555484465334{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_custom_heading text=\"Areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1549464954106{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_custom_heading text=\"Education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1549464960053{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"Publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1549464988413{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:3|order_by:ID|order:ASC|post_type:post,stm_service\" posts_per_row=\"3\" css=\".vc_custom_1555504395665{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1555577317154{margin-right: 0px !important;margin-left: 0px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;border-left-color: #d7d7d7 !important;border-left-style: solid !important;border-right-color: #d7d7d7 !important;border-right-style: solid !important;border-top-color: #d7d7d7 !important;border-top-style: solid !important;border-bottom-color: #d7d7d7 !important;border-bottom-style: solid !important;}\" el_class=\"my_form\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"Feedback form\" font_container=\"tag:h4|text_align:left|color:%23000000\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #000000;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390957100{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Brandon Copperfield', 'The founder of Consulting WP, he has been the captain of this ship from the beginning and has sailed it to the successful behemoth it is today. He is known in the industry to be one of the most successful CEO’s. He says he owes his success to his fantastic team.', 'publish', 'closed', 'closed', '', 'brandon-copperfield', '', '', '2016-01-08 11:27:30', '2016-01-08 11:27:30', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_staff&amp;p=461', 0, 'stm_staff', '', 0),
(462, 1, '2016-01-08 11:28:46', '2016-01-08 11:28:46', '[vc_row css=\".vc_custom_1459506565899{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" css=\".vc_custom_1452247174165{margin-bottom: 30px !important;}\"][stm_staff_list style=\"grid\" per_row=\"3\" count=\"6\"][stm_spacing sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390449757{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our team grid', '', 'publish', 'closed', 'closed', '', 'our-team-grid', '', '', '2016-01-08 11:28:46', '2016-01-08 11:28:46', '', 6483, 'http://consulting.stylemixthemes.com/demo/?page_id=462', 0, 'page', '', 0),
(508, 1, '2016-01-11 09:28:18', '2016-01-11 09:28:18', '<div class=\"request_callback\">\r\n    <div class=\"row\" style=\"margin: 0 -13px;\">\r\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\r\n            <div class=\"input-group\">\r\n                [text* text-name placeholder akismet:author \"First name *\"]\r\n            </div>\r\n            <div class=\"input-group\">\r\n                [email* email placeholder akismet:author_email \"E-mail *\"]\r\n            </div>\r\n            <div class=\"input-group\">\r\n                [tel* phone placeholder \"Phone *\"]\r\n            </div>\r\n        </div>\r\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\r\n            <div class=\"input-group\">\r\n                [textarea* message placeholder \"Your Message *\"]\r\n            </div>\r\n            <div class=\"input-group\">\r\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</div>\n1\n[your-subject]\ninfo@qualstream.net\ninfo@qualstream.net\nYour name: [text-name]\r\nYour email: [email]\r\nphone: [phone]\r\nmessage: [message]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Feedback Form', '', 'publish', 'closed', 'closed', '', 'request-a-call-back_copy', '', '', '2021-04-06 06:50:40', '2021-04-06 06:50:40', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=wpcf7_contact_form&#038;p=508', 0, 'wpcf7_contact_form', '', 0),
(527, 1, '2016-01-13 04:38:07', '2016-01-13 04:38:07', '[vc_row css=\".vc_custom_1533640275437{margin-bottom: 40px !important;padding-top: 30px !important;}\"][vc_column][vc_wp_search][vc_wp_categories title=\"categories\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452662201783{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1559381219201{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1559381225781{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_archives title=\"archive\" options=\"dropdown\"][vc_wp_tagcloud title=\"tags\" taxonomy=\"post_tag\"][/vc_column][/vc_row]', 'VC Right Blog Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-blog-sidebar', '', '', '2016-01-13 04:38:07', '2016-01-13 04:38:07', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_vc_sidebar&amp;p=527', 0, 'stm_vc_sidebar', '', 0),
(558, 1, '2016-01-13 17:48:37', '2016-01-13 17:48:37', '[vc_row css=\".vc_custom_1540962548235{margin-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][stm_services posts_per_page=\"12\" posts_per_row=\"3\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545390995735{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Services', '', 'publish', 'closed', 'closed', '', 'services-grid', '', '', '2016-01-13 17:48:37', '2016-01-13 17:48:37', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=558', 0, 'page', '', 0),
(563, 1, '2016-01-14 05:13:30', '2016-01-14 05:13:30', '[vc_row css=\".vc_custom_1459506821943{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5227\" img_size=\"stm-image-1110x550-croped\" css=\".vc_custom_1555482965649{margin-bottom: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text css=\".vc_custom_1456124747340{margin-bottom: 25px !important;}\"]In order for any business to succeed they need to have the right planning, the right strategy, and the right execution of these things. Consulting WP helps its clients expand and grow by providing them all three. We know how important it is to have the right plan, if your plan is wrong then every step you take will be in the wrong direction as well. This moves companies away from their objective instead of towards it. We study our clients deeply before suggesting any plan, because we have to ensure that we have all the variables in check.\n\nOnce we have a plan, we work with our clients on creating a strategy. Many people think strategy and plan are the same but Consulting WordPress Theme knows better. We know that plan is what we try to achieve and strategy is how we are going to achieve it.[/vc_column_text][vc_column_text css=\".vc_custom_1456123332539{margin-bottom: 57px !important;}\"]\n<blockquote>Consulting WP - we help companies assess their skills and choose a new direction which utilizes the talents of the team and resources most productively.</blockquote>\n[/vc_column_text][vc_row_inner css=\".vc_custom_1452765376433{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Safety net &amp; build wealth\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311933932{margin-bottom: 27px !important;}\" el_class=\"no_stripe remove_padding\"][stm_charts design=\"circle\" legend_position=\"right\" values_circle=\"%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%238d6dc4%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22%23f79468%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%23cec2ab%22%7D%5D\" width=\"208\" height=\"208\" css=\".vc_custom_1453102995785{margin-bottom: 14px !important;}\"][vc_column_text]<span style=\"font-size: 13px; color: #777777; line-height: 22px;\">You can transform your business to a revenue-producing asset that lets you work as much or as little as you want.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business planning &amp; strategy\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311924466{margin-bottom: 23px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]Our clients are often surprised by the possibilities we present to them; by thinking outside the box we present exciting new ventures:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days,</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Research beyond the business plan\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311950682{margin-bottom: 31px !important;}\" el_class=\"no_stripe remove_padding\"][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\" css=\".vc_custom_1452765829166{margin-bottom: 57px !important;}\"][vc_tta_section title=\"Client Prospecting\" tab_id=\"1452765420119-d4dfaf69-4fae\"][vc_column_text]We also ensure that the whole team is included in the process and that no one is left out during the turnaround. The most crucial part is ensuring some degree of financial stability during the turnaround.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Web Site Research\" tab_id=\"1452765443215-63a10c55-a5ef\"][vc_column_text]This is the most worrying part for most clients going through or needing a turnaround; it means that incoming cash flows will change completely. We help ease these issues through fantastic financial projections and a realistic view of what can be accomplished.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Grant &amp; Funding Research\" tab_id=\"1452765442453-b921a1fb-6ec8\"][vc_column_text]Creating a list of potential qualified prospects for your service or product can be daunting when you\'re beginning your business. However, this needs to be considered as a follow up on your Target Market Analysis so you can hit the ground running.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business plan market\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311960466{margin-bottom: 23px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text css=\".vc_custom_1456124766156{margin-bottom: 20px !important;}\"]Once the right plan has been created for a company we work with them at creating a strategy that allows the plan to work. We look at the environmental factors of our clients and make recommendations about steps which can be taken to move in the right direction:[/vc_column_text][vc_column_text]\n<ul>\n 	<li><span style=\"font-size: 13px;\"><strong>Don James/Semplice</strong> – Article and News research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>HighVoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>IRISpace</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Lexos-Nexos</strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Plombett</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Pronounce</strong> – market analysis report “slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Competitor research &amp; analysis\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311968834{margin-bottom: 20px !important;}\" el_class=\"no_stripe remove_padding\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"410\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"577\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391401309{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Business Planning, Strategy & Execution', 'Execution is the single most important part of the whole process, poor execution can result in a lot of lost time and money.', 'publish', 'closed', 'closed', '', 'business-planning-strategy-execution', '', '', '2016-01-14 05:13:30', '2016-01-14 05:13:30', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=563', 0, 'stm_service', '', 0),
(565, 1, '2016-01-14 05:38:36', '2016-01-14 05:38:36', '[vc_row css=\".vc_custom_1459506845772{margin-bottom: 100px !important;}\"][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"577\"][/vc_column][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1456124849829{margin-bottom: 0px !important;}\"]There are no geographical limitations in today’s world of information technology. Consulting WordPress Theme allows its clients to truly branch out and avail the opportunities all around the world. We are able to provide this function due to our diverse team and many international offices. We understand the international business culture and will help you work with people from other countries.\n\nEven more importantly, we know about the legal ramifications of international deals. We know the laws of different countries and help our clients comply with them. We allow you to enter international waters without having to worry about making a mistake, as we use our international experience to give your company the advantage of experience.[/vc_column_text][vc_custom_heading text=\"Range of industries\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_row_inner css=\".vc_custom_1452770900884{margin-bottom: 20px !important;}\"][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"15\" icon_color=\"custom\" icon_width=\"66\" title=\"Travel and Aviation\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"66\" title=\"Business Services\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-cart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"custom\" icon_width=\"66\" title=\"Consumer Products\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452770976377{margin-bottom: 20px !important;}\"][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"24\" icon_color=\"custom\" icon_width=\"66\" title=\"Financial Services\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-lamp\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"66\" title=\"Energy\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-truck\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"66\" title=\"Transport &amp; Logistics\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453717420557{margin-bottom: 15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Strategic &amp; tactical planning\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_column_text]Our renowned coaching programs will allow you to:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days, weeks, or even months at a time</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Strategy development\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310075877{margin-bottom: 15px !important;}\"][stm_charts design=\"pie\" legend_position=\"right\" width=\"210\" height=\"210\" css=\".vc_custom_1453109317809{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"color: #777777; font-size: 13px; line-height: 22px;\">You can transform your business to a revenue-producing asset that lets you work as much or as little as you want.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Strategic plan development\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"825\" height=\"420\" css=\".vc_custom_1453717756599{margin-bottom: 10px !important;}\"][vc_custom_heading text=\"Research beyond the business plan\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\"][vc_tta_section title=\"Strategy Development\" tab_id=\"1452775750332-de92cf12-22f7\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Strategic Plan Development\" tab_id=\"1452775774465-27c1e69f-9d41\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Strategic Plan Execution Management\" tab_id=\"1452775784252-f534cff2-c971\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391387228{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'International Business Opportunities', 'We allow you to enter international waters without having to worry about making a mistake, as experience.', 'publish', 'closed', 'closed', '', 'international-business-opportunities', '', '', '2016-01-14 05:38:36', '2016-01-14 05:38:36', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=565', 0, 'stm_service', '', 0),
(566, 1, '2016-01-14 05:38:57', '2016-01-14 05:38:57', '[vc_row css=\".vc_custom_1459506868770{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5133\" img_size=\"stm-image-1110x550-croped\" css=\".vc_custom_1555512780294{margin-bottom: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text css=\".vc_custom_1456124656136{margin-bottom: 25px !important;}\"]We live in the world of data now; data allows us to make realistic decisions about the future. No financial department or company can claim to have completed its work unless they have financial projections ready. Consulting WP helps clients create dynamic financial projections that take real data and map out realistic outcomes.\n\nSmart people know better than to take steps based on gut feelings alone. Financial projections are a necessity for any company. As the leader of the company you need to know how your finances will look the next year. [/vc_column_text][vc_column_text css=\".vc_custom_1456123332539{margin-bottom: 57px !important;}\"]\n<blockquote>Consulting WP - we help companies assess their skills and choose a new direction which utilizes the talents of the team and resources most productively.</blockquote>\n[/vc_column_text][vc_row_inner css=\".vc_custom_1452765376433{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Safety net &amp; build wealth\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456313597694{margin-bottom: 27px !important;}\" el_class=\"no_stripe remove_padding\"][stm_charts design=\"circle\" legend_position=\"right\" values_circle=\"%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%238d6dc4%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22%23f79468%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%23cec2ab%22%7D%5D\" width=\"208\" height=\"208\" css=\".vc_custom_1453102995785{margin-bottom: 14px !important;}\"][vc_column_text]<span style=\"font-size: 13px; color: #777777; line-height: 22px;\">You can transform your business to a revenue-producing asset that lets you work as much or as little as you want.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business planning &amp; strategy\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456313605148{margin-bottom: 23px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]Our clients are often surprised by the possibilities we present to them; by thinking outside the box we present exciting new ventures:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days,</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Research beyond the business plan\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456313586228{margin-bottom: 31px !important;}\" el_class=\"no_stripe remove_padding\"][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\" css=\".vc_custom_1452765829166{margin-bottom: 57px !important;}\"][vc_tta_section title=\"Client Prospecting\" tab_id=\"1452765420119-d4dfaf69-4fae\"][vc_column_text]We also ensure that the whole team is included in the process and that no one is left out during the turnaround. The most crucial part is ensuring some degree of financial stability during the turnaround.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Web Site Research\" tab_id=\"1452765443215-63a10c55-a5ef\"][vc_column_text]This is the most worrying part for most clients going through or needing a turnaround; it means that incoming cash flows will change completely. We help ease these issues through fantastic financial projections and a realistic view of what can be accomplished.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Grant &amp; Funding Research\" tab_id=\"1452765442453-b921a1fb-6ec8\"][vc_column_text]Creating a list of potential qualified prospects for your service or product can be daunting when you\'re beginning your business. However, this needs to be considered as a follow up on your Target Market Analysis so you can hit the ground running.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business plan market\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456313560733{margin-bottom: 23px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text css=\".vc_custom_1456124690704{margin-bottom: 20px !important;}\"]Financial projections are a necessity for any company. As the leader of the company you need to know how your finances will look the next year. This also has the benefit of alerting you to any red flags you may be unaware of:[/vc_column_text][vc_column_text]\n<ul>\n 	<li><span style=\"font-size: 13px;\"><strong>Don James/Semplice</strong> – Article and News research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>HighVoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>IRISpace</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Lexos-Nexos</strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Plombett</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Pronounce</strong> – market analysis report “slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Competitor research &amp; analysis\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456313571205{margin-bottom: 20px !important;}\" el_class=\"no_stripe remove_padding\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"577\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391375041{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Financial Projections', 'This stops companies from taking drastic measures like downsizing or closing down sites; those things happen only with no.', 'publish', 'closed', 'closed', '', 'financial-projections-analysis', '', '', '2016-01-14 05:38:57', '2016-01-14 05:38:57', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=566', 0, 'stm_service', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(567, 1, '2016-01-14 05:39:22', '2016-01-14 05:39:22', '[vc_row css=\".vc_custom_1452836633781{margin-bottom: 53px !important;}\"][vc_column][rev_slider alias=\"service_slider\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Trades &amp; Stocks\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1549466446722{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452837797829{margin-bottom: 51px !important;}\"][vc_column width=\"1/2\"][vc_column_text]Strategic planning means planning in a way that maximizes outcomes. Too many companies reach success once but then end up floundering. The reason is that these companies did not plan with any strategy in mind. Financial WordPress theme ensures that all of its clients have a strategic plan that outlines the company’s vision and how it aims to achieve that vision:\n<ul>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Don James/Semplice</strong> – Article and News research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>HighVoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>IRISpace </strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Lexos-Nexos </strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Plombett</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Pronounce</strong> – market analysis report “slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" legend_align=\"\" width=\"540\" height=\"340\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"Reliable &amp; Safe\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1549466521221{margin-bottom: 40px !important;}\"][vc_row_inner css=\".vc_custom_1452839824807{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-libra\" style=\"icon_left\" icon_size=\"26\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Regulation\" icon_color_custom=\"#ffffff\"]Licensed by the Cyprus Securities and Exchange Commission under licence number 138/11 in accordance with the Markets in Financial Instruments Directive.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-security\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Insured Client Funds\" icon_color_custom=\"#ffffff\"]We are a proud member of the Investor Compensation Fund which acts as a guarantor of last resort for our investors. IFC covers the maximum amount of 20.000 EUR for MiFID clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Segregated Accounts\" icon_color_custom=\"#ffffff\"]Investor’s money is kept in segregated accounts with top-tier banks that cannot be claimed by creditors or used by us. Account base currencies are available in EUR, GBP, USD, CHF and JPY.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-rating_down\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Negative Balance Protection\" icon_color_custom=\"#ffffff\"]Through the use of an automated transaction monitoring and risk management system, a Consulting WP client’s account will never be allowed to reach negative balance.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-badge\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Extreme Transparency Policy\" icon_color_custom=\"#ffffff\"]Our Extreme Transparency Policy ensures that the client receives a transparent price feed, transparent liquidity, transparent historical data, transparent market information at all times.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"USD 825.000.000 NOP\" icon_color_custom=\"#ffffff\"]The total value of all of the client’s open positions combined (net open position) may not surpass USD 825.000.000.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1555515936179{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2016/01/rawpixel-558596-unsplash.jpg?id=5153) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"overlay_4 fixed_bg\"][vc_column][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312189778{margin-bottom: 40px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"Raw Spreads\" link=\"url:%23||\" css=\".vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"No Dealing Desk\" link=\"url:%23||\" css=\".vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">With Consulting WP you’ll get no re-quotes, no dealer intervention and fair order execution.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"State of the Art\" link=\"url:%23||\" css=\".vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Trade Forex and CFDs with the world’s best trading platforms on your desktop or mobile device.</span>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1453099700139{margin-bottom: 48px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"Strategy development\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312179889{margin-bottom: 34px !important;}\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"540\" height=\"230\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Range of markets\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312171801{margin-bottom: 38px !important;}\"][vc_row_inner css=\".vc_custom_1453096632149{margin-bottom: 28px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-target\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"forex\"]Trade Forex with leverage, sixty currency pairs, fast execution and No Dealing Desk.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"indices\"]Trade 15 Index CFDs and take a position according to your view of the overall market.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-metals\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"metals\"]Trade gold and silver and take advantage of our advanced platforms and no-deposit-fees policy.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-oil\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"oil range\"]Trade Brent Crude and WTI light crude oil. No deposit fees.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" video_bg=\"yes\" video_bg_parallax=\"content-moving\" css=\".vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}\" el_class=\"video_overlay\"][vc_column][vc_custom_heading text=\"Trade on the go!\" font_container=\"tag:h1|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1549466394541{margin-bottom: 40px !important;}\"][vc_btn title=\"Open a live account\" style=\"flat\" shape=\"square\" color=\"theme_style_3\" size=\"lg\" align=\"center\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\"][/vc_column][/vc_row]', 'Strategic Planning', 'We work with our clients and do a deep analysis of their business. We help prepare possible outcomes to different decisions.', 'publish', 'closed', 'closed', '', 'strategic-planning', '', '', '2016-01-14 05:39:22', '2016-01-14 05:39:22', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=567', 0, 'stm_service', '', 0),
(568, 1, '2016-01-14 05:39:35', '2016-01-14 05:39:35', '[vc_row css=\".vc_custom_1452836633781{margin-bottom: 53px !important;}\"][vc_column][rev_slider alias=\"service_slider\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"trades &amp; stocks\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1453464607012{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452837797829{margin-bottom: 51px !important;}\"][vc_column width=\"1/2\"][vc_column_text]Trades and stock are the lifeblood of any financial institution. Without the right trades and stock no company can flourish. That is why Business WordPress theme ensures that your trades and stocks are proper. We offer consulting services that enhance your portfolio and guide you about making the right trades:\n<ul>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Don James/Semplice</strong> – Article and News research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>HighVoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>IRISpace </strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Lexos-Nexos </strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Plombett</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Pronounce</strong> – market analysis report “slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" legend_align=\"\" width=\"540\" height=\"340\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"reliable &amp; safe\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1452839683405{margin-bottom: 40px !important;}\"][vc_row_inner css=\".vc_custom_1452839824807{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-libra\" style=\"icon_left\" icon_size=\"26\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Regulation\" icon_color_custom=\"#ffffff\"]Licensed by the Cyprus Securities and Exchange Commission under licence number 138/11 in accordance with the Markets in Financial Instruments Directive.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-security\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Insured Client Funds\" icon_color_custom=\"#ffffff\"]We are a proud member of the Investor Compensation Fund which acts as a guarantor of last resort for our investors. IFC covers the maximum amount of 20.000 EUR for MiFID clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Segregated Accounts\" icon_color_custom=\"#ffffff\"]Investor’s money is kept in segregated accounts with top-tier banks that cannot be claimed by creditors or used by us. Account base currencies are available in EUR, GBP, USD, CHF and JPY.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-rating_down\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Negative Balance Protection\" icon_color_custom=\"#ffffff\"]Through the use of an automated transaction monitoring and risk management system, a Consulting WP client’s account will never be allowed to reach negative balance.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-badge\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Extreme Transparency Policy\" icon_color_custom=\"#ffffff\"]Our Extreme Transparency Policy ensures that the client receives a transparent price feed, transparent liquidity, transparent historical data, transparent market information at all times.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"USD 825.000.000 NOP\" icon_color_custom=\"#ffffff\"]The total value of all of the client’s open positions combined (net open position) may not surpass USD 825.000.000.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1555515910654{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/tyler-franta-589346-unsplash.jpg?id=5223) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"overlay_4 fixed_bg\"][vc_column][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312091330{margin-bottom: 40px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"Raw Spreads\" link=\"url:%23||\" css=\".vc_custom_1453448862907{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"No Dealing Desk\" link=\"url:%23||\" css=\".vc_custom_1453448925038{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">With Consulting WP you’ll get no re-quotes, no dealer intervention and fair order execution.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"State of the Art\" link=\"url:%23||\" css=\".vc_custom_1453448929734{padding-top: 10px !important;padding-right: 50px !important;padding-bottom: 36px !important;padding-left: 50px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Trade Forex and CFDs with the world’s best trading platforms on your desktop or mobile device.</span>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1453099700139{margin-bottom: 48px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"Strategy development\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312081882{margin-bottom: 34px !important;}\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"540\" height=\"230\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Range of markets\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312072059{margin-bottom: 38px !important;}\"][vc_row_inner css=\".vc_custom_1453096632149{margin-bottom: 28px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-target\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"forex\"]Trade Forex with leverage, sixty currency pairs, fast execution and No Dealing Desk.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"indices\"]Trade 15 Index CFDs and take a position according to your view of the overall market.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-metals\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"metals\"]Trade gold and silver and take advantage of our advanced platforms and no-deposit-fees policy.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-oil\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"oil range\"]Trade Brent Crude and WTI light crude oil. No deposit fees.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" video_bg=\"yes\" video_bg_parallax=\"content-moving\" css=\".vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}\" el_class=\"video_overlay\"][vc_column][vc_custom_heading text=\"Trade on the go!\" font_container=\"tag:h1|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1456312052114{margin-bottom: 40px !important;}\"][vc_btn title=\"open a live account\" style=\"flat\" shape=\"square\" color=\"theme_style_3\" size=\"lg\" align=\"center\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\"][/vc_column][/vc_row]', 'Trades & Stocks', 'This allows us to specialize in all dimensions of trades and stocks, because we have a specialist within the team for every scenario.', 'publish', 'closed', 'closed', '', 'trades-stocks', '', '', '2016-01-14 05:39:35', '2016-01-14 05:39:35', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=568', 0, 'stm_service', '', 0),
(569, 1, '2016-01-14 05:39:46', '2016-01-14 05:39:46', '[vc_row css=\".vc_custom_1452836633781{margin-bottom: 53px !important;}\"][vc_column][rev_slider alias=\"service_slider\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Trades &amp; stocks\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1534413991814{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452837797829{margin-bottom: 51px !important;}\"][vc_column width=\"1/2\"][vc_column_text]An excellent Audit service is necessary for any company to be financially sound. Our Audit &amp; Assurance services ensure that there is no mistake or wrongdoing in your company undetected. Some companies have the mistaken idea that audits are only necessary when malicious wrongdoings occur in the data. Thus any company that is large enough needs to have outside audit and assurance done:\n<ul>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Don James/Semplice</strong> – Article and News research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>HighVoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>IRISpace </strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Lexos-Nexos </strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Plombett</strong> – Industry Research</span></li>\n 	<li><span style=\"font-size: 13px; line-height: 22px;\"><strong>Pronounce</strong> – market analysis report “slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" legend_align=\"\" width=\"540\" height=\"340\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1452840284250{padding-top: 47px !important;padding-bottom: 18px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"Reliable &amp; safe\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1540895047975{margin-bottom: 40px !important;}\"][vc_row_inner css=\".vc_custom_1452839824807{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-libra\" style=\"icon_left\" icon_size=\"26\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Regulation\" icon_color_custom=\"#ffffff\"]Licensed by the Cyprus Securities and Exchange Commission under licence number 138/11 in accordance with the Markets in Financial Instruments Directive.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-security\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Insured Client Funds\" icon_color_custom=\"#ffffff\"]We are a proud member of the Investor Compensation Fund which acts as a guarantor of last resort for our investors. IFC covers the maximum amount of 20.000 EUR for MiFID clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Segregated Accounts\" icon_color_custom=\"#ffffff\"]Investor’s money is kept in segregated accounts with top-tier banks that cannot be claimed by creditors or used by us. Account base currencies are available in EUR, GBP, USD, CHF and JPY.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-rating_down\" style=\"icon_left\" icon_size=\"23\" icon_color=\"custom\" icon_width=\"70\" title=\"Negative Balance Protection\" icon_color_custom=\"#ffffff\"]Through the use of an automated transaction monitoring and risk management system, a Consulting WP client’s account will never be allowed to reach negative balance.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1452839938467{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-badge\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Extreme Transparency Policy\" icon_color_custom=\"#ffffff\"]Our Extreme Transparency Policy ensures that the client receives a transparent price feed, transparent liquidity, transparent historical data, transparent market information at all times.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"USD 825.000.000 NOP\" icon_color_custom=\"#ffffff\"]The total value of all of the client’s open positions combined (net open position) may not surpass USD 825.000.000.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1555512880069{margin-bottom: 33px !important;padding-top: 47px !important;padding-bottom: 60px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/carlos-muza-84523-unsplash.jpg?id=5245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"overlay_4 fixed_bg\"][vc_column][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1540895040107{margin-bottom: 40px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"Raw Spreads\" link=\"url:%23||\" css=\".vc_custom_1534395693287{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier institutions.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"No Dealing Desk\" link=\"url:%23||\" css=\".vc_custom_1534395710018{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">With Consulting WP you’ll get no re-quotes, no dealer intervention and fair order execution.</span>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box align_center=\"yes\" style=\"style_2\" icon=\"fa fa-chevron-right\" title=\"State of the Art\" link=\"url:%23||\" css=\".vc_custom_1534395715968{padding-top: 10px !important;padding-right: 20px !important;padding-bottom: 36px !important;padding-left: 20px !important;}\"]<span style=\"font-size: 13px; line-height: 18px;\">Trade Forex and CFDs with the world’s best trading platforms on your desktop or mobile device.</span>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1453099700139{margin-bottom: 48px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"Strategy development\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311730027{margin-bottom: 34px !important;}\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"540\" height=\"230\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Range of markets\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311739835{margin-bottom: 38px !important;}\"][vc_row_inner css=\".vc_custom_1453096632149{margin-bottom: 28px !important;}\"][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-target\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"Forex\"]Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nam tristique.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-graph\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"Indices\"]Aliquam erat volutpat. Donec vel nisl orci. Phasellus a sodales risus. Curabitur dictum ac enim ac egestas ipsum dolor.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-metals\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"Metals\"]Fusce dolor ante, euismod non congue ac, sagittis vel magna. Pellentesque aliquam dapibus ipsum, aliquam ultricies sed.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-oil\" style=\"icon_left_transparent\" icon_size=\"18\" icon_width=\"28\" title=\"Oil range\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris rutrum faucibus posuere varius condimentum.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" video_bg=\"yes\" video_bg_parallax=\"content-moving\" css=\".vc_custom_1453974134693{margin-bottom: -60px !important;padding-top: 82px !important;padding-bottom: 125px !important;}\" el_class=\"video_overlay\"][vc_column][vc_custom_heading text=\"Trade on the go!\" font_container=\"tag:h1|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1540895140945{margin-bottom: 40px !important;}\"][vc_btn title=\"open a live account\" style=\"flat\" shape=\"square\" color=\"theme_style_3\" size=\"lg\" align=\"center\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\"][/vc_column][/vc_row]', 'Audit & Assurance', 'Audit and assurance is all about meticulous data analysis. Everything needs to be checked, double checked, and triple checked.', 'publish', 'closed', 'closed', '', 'audit-assurance', '', '', '2016-01-14 05:39:46', '2016-01-14 05:39:46', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=569', 0, 'stm_service', '', 0),
(570, 1, '2016-01-14 05:40:08', '2016-01-14 05:40:08', '[vc_row css=\".vc_custom_1459506919385{margin-bottom: 100px !important;}\"][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"577\"][/vc_column][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1456123631985{margin-bottom: 0px !important;}\"]As expert consultants, Consulting WordPress Theme know the intricacies of bonds and commodities. Bonds and commodities are much more stable than stocks and trades; however the payout is a bit lower in itself. We allow our clients to invest in the right bonds &amp; commodities.\n\nBonds and Commodities allow your company to have a financial base which is stable. Your company will be able to take more risks once it has invested in Bonds &amp; Commodities, because it will have a steady source of income already. This is why Business WordPress theme helps its clients invest in structurally sound bonds and non-volatile commodities.[/vc_column_text][vc_custom_heading text=\"Range of industries\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_row_inner css=\".vc_custom_1452770900884{margin-bottom: 20px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"15\" icon_color=\"custom\" icon_width=\"66\" title=\"Travel and Aviation\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"66\" title=\"Business Services\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-cart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"custom\" icon_width=\"64\" title=\"Consumer Products\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"24\" icon_color=\"custom\" icon_width=\"66\" title=\"Financial Services\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-lamp\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"66\" title=\"Energy\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-6\"][stm_icon_box hide_title_line=\"hide_title_line\" v_align_middle=\"enable\" icon=\"stm-truck\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"64\" title=\"Transport &amp; Logistics\nConsulting\" icon_color_custom=\"#ffffff\"][/stm_icon_box][stm_spacing lg_spacing=\"30\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453717420557{margin-bottom: 15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Strategic &amp; tactical planning\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_column_text]Our renowned coaching programs will allow you to:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days, weeks, or even months at a time</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Strategy development\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456309188979{margin-bottom: 15px !important;}\"][stm_charts design=\"pie\" legend_position=\"right\" width=\"210\" height=\"210\" css=\".vc_custom_1453109317809{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"color: #777777; font-size: 13px; line-height: 22px;\">You can transform your business to a revenue-producing asset that lets you work as much or as little as you want.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Strategic plan development\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"825\" height=\"420\" css=\".vc_custom_1453717756599{margin-bottom: 10px !important;}\"][vc_custom_heading text=\"Research beyond the business plan\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\"][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\"][vc_tta_section title=\"Strategy Development\" tab_id=\"1452775750332-de92cf12-22f7\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Strategic Plan Development\" tab_id=\"1452775774465-27c1e69f-9d41\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Strategic Plan Execution Management\" tab_id=\"1452775784252-f534cff2-c971\"][vc_column_text]Good strategy is the antidote to competition. Strategic thinking is the process of developing a strategy that defines your value proposition and your unique value chain. This process includes market and competitive research as well as an assessment of the company’s capabilities and the industry forces impacting it.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1533636329507{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" css=\".vc_custom_1545391095968{margin-bottom: 0px !important;}\" el_class=\"third_bg_color\"][/vc_cta][/vc_column][/vc_row]', 'Strategic planning', 'Bonds and commodities are much more stable than stocks and trades. We allow our clients to invest in the right bonds &amp; commodities.', 'publish', 'closed', 'closed', '', 'strategic-planning-2', '', '', '2016-01-14 05:40:08', '2016-01-14 05:40:08', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=570', 0, 'stm_service', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(571, 1, '2016-01-14 05:40:19', '2016-01-14 05:40:19', '[vc_row css=\".vc_custom_1459506798851{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5269\" img_size=\"stm-image-1110x550-croped\" css=\".vc_custom_1555491615237{margin-bottom: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text css=\".vc_custom_1456123311085{margin-bottom: 25px !important;}\"]Companies seem to dislike the term ‘turnaround consulting’ because it represents failure. The truth is that turnaround consulting represents success at realizing the company is going in the wrong direction. The only time the company fails is when it is not possible to do a turnaround anymore. We help companies pivot into more profitable directions where they can expand and grow. It is inevitable that companies will end up making a few mistakes; we help them correct these mistakes.\n\nWe help companies turnaround their non-profitable ventures into something that benefits them. Our specialty lies in understanding what makes a company special and what makes it tick.\n[/vc_column_text][vc_column_text css=\".vc_custom_1456219422743{margin-bottom: 34px !important;}\"]\n<blockquote>Consulting WP - we help companies assess their skills and choose a new direction which utilizes the talents of the team and resources most productively.</blockquote>\n[/vc_column_text][vc_row_inner css=\".vc_custom_1456219515168{margin-bottom: 27px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Safety net &amp; build wealth\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311057010{margin-bottom: 27px !important;}\"][stm_charts design=\"circle\" legend_position=\"right\" values_circle=\"%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%238d6dc4%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22%23f79468%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22%23cec2ab%22%7D%5D\" width=\"208\" height=\"208\" css=\".vc_custom_1525425810759{margin-bottom: 14px !important;}\"][vc_column_text]<span style=\"font-size: 13px; color: #777777; line-height: 22px;\">You can transform your business to a revenue-producing asset that lets you work as much or as little as you want.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business planning &amp; strategy\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311065739{margin-bottom: 23px !important;}\"][vc_column_text]Our clients are often surprised by the possibilities we present to them; by thinking outside the box we present exciting new ventures:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days,</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Research beyond the business plan\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311075930{margin-bottom: 31px !important;}\"][vc_tta_accordion shape=\"square\" c_position=\"right\" active_section=\"1\" css=\".vc_custom_1456219636222{margin-bottom: 34px !important;}\"][vc_tta_section title=\"Client Prospecting\" tab_id=\"1452765420119-d4dfaf69-4fae\"][vc_column_text]We also ensure that the whole team is included in the process and that no one is left out during the turnaround. The most crucial part is ensuring some degree of financial stability during the turnaround.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Web Site Research\" tab_id=\"1452765443215-63a10c55-a5ef\"][vc_column_text]This is the most worrying part for most clients going through or needing a turnaround; it means that incoming cash flows will change completely. We help ease these issues through fantastic financial projections and a realistic view of what can be accomplished.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Grant &amp; Funding Research\" tab_id=\"1452765442453-b921a1fb-6ec8\"][vc_column_text]Creating a list of potential qualified prospects for your service or product can be daunting when you\'re beginning your business. However, this needs to be considered as a follow up on your Target Market Analysis so you can hit the ground running.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Business plan market\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311087657{margin-bottom: 23px !important;}\"][vc_column_text css=\".vc_custom_1452766167584{margin-bottom: 20px !important;}\"]A strong business plan requires going beyond intuition and experience, and supporting your idea with fact-based market research. Investors need to have confidence in your understanding of the market, so don\'t let yourself down by skimping on research. We have access to fee-based, subscriber-only resources such as:[/vc_column_text][vc_column_text]\n<ul>\n 	<li><span style=\"font-size: 13px;\"><strong>Don James/Semplice</strong> – Article and News Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>VoltageBusiness</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Goovers</strong> – Company and Industry Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>IRISpace</strong> – Article and News Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Lexos-Nexos</strong> – Company, Industry, Market Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Plombett</strong> – Article and News Research</span></li>\n 	<li><span style=\"font-size: 13px;\"><strong>Pronounce</strong> – Market Analysis report “Slices”</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Competitor research &amp; analysis\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1456311094682{margin-bottom: 20px !important;}\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"410\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"577\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391072270{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Financial Services', 'Companies dislike the term ‘turnaround consulting’ because it represents failure. The truth is that turnaround consulting represents success.', 'publish', 'closed', 'closed', '', 'financial-services', '', '', '2016-01-14 05:40:19', '2016-01-14 05:40:19', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_service&amp;p=571', 0, 'stm_service', '', 0),
(573, 1, '2016-01-14 06:07:31', '2016-01-14 06:07:31', '[vc_row css=\".vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1545390243319{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1545390233365{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451998133493{margin-bottom: 30px !important;}\"][vc_column][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\" css=\".vc_custom_1452752737760{margin-bottom: 30px !important;}\"][stm_testimonials count=\"1\"][vc_wp_posts title=\"recent news\" number=\"2\" show_date=\"1\"][/vc_column][/vc_row]', 'VC Right Services Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-services-sidebar', '', '', '2016-01-14 06:07:31', '2016-01-14 06:07:31', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_vc_sidebar&amp;p=573', 0, 'stm_vc_sidebar', '', 0),
(577, 1, '2016-01-14 10:30:36', '2016-01-14 10:30:36', '[vc_row][vc_column][vc_wp_custommenu nav_menu=\"70\"][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\" css=\".vc_custom_1452752737760{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1540891042026{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1559381258018{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1559381263789{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451998133493{margin-bottom: 30px !important;}\"][vc_column][stm_testimonials count=\"1\"][/vc_column][/vc_row]', 'VC Right Service Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-service-sidebar', '', '', '2016-01-14 10:30:36', '2016-01-14 10:30:36', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_vc_sidebar&amp;p=577', 0, 'stm_vc_sidebar', '', 0),
(599, 1, '2016-01-19 09:09:49', '2016-01-19 09:09:49', '<div class=\"member_feedback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name2 placeholder akismet:author \"Last Name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel phone placeholder \"Phone Number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* city placeholder \"City\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select state first_as_label \"Select State (USA only)\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select country first_as_label \"Country\" \"Value 1\" \"Value 2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_left\"><i class=\"fa fa-chevron-right\"></i> Submit</button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[text-name][text-name2][email][phone][city][state][country]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Member Feedback Form', '', 'publish', 'closed', 'closed', '', 'request-a-call-back_copy-2', '', '', '2016-01-19 09:09:49', '2016-01-19 09:09:49', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=wpcf7_contact_form&amp;p=599', 0, 'wpcf7_contact_form', '', 0),
(600, 1, '2019-11-19 10:12:51', '2019-11-19 10:12:51', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][vc_column_text]Expanded complexities and changing business conditions require the need for the administration so as to comprehend the predominant monetary frameworks to guarantee their benefit. Inspecting offers the vital expert and free proposals that demonstrate essential for the validity of the association. Examining additionally guarantees cautious investigation of potential dangers and advances the improvement of well-arranged frameworks to alleviate those dangers.[/vc_column_text][stm_spacing lg_spacing=\"15\" md_spacing=\"15\" sm_spacing=\"15\" xs_spacing=\"15\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Improve sales and operations and production planning:\n</strong>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>The diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Determine the right inventory level:\n</strong>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>The diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Solution\" use_theme_fonts=\"yes\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_video link=\"https://www.youtube.com/embed/04DRXybgLvA\" image=\"6474\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1574326334627{margin-bottom: -60px !important;background-color: #f2f4fa !important;}\"][vc_column][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Solution\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]By the numbers, the effort:\n<ul>\n 	<li>Reduced lead time by 43%</li>\n 	<li>Decreased variability by 50%</li>\n 	<li>Lowered the risk of back-order by 95%</li>\n 	<li>Increased stock for finished goods by 10%</li>\n 	<li>Decreased variability by 50%</li>\n 	<li>Lowered the risk of back-order by 95%</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][stm_image_carousel img_size=\"260x150\" items=\"4\" items_small_desktop=\"3\" items_tablet=\"2\" images=\"6474\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row]', 'Transformation sparks financial income for all', 'Business Services', 'publish', 'closed', 'closed', '', 'transformation-sparks-financial-leaders-turnaround', '', '', '2019-11-19 10:12:51', '2019-11-19 10:12:51', '', 0, 'http://consulting.stylemixthemes.com/?post_type=stm_works&amp;p=600', 0, 'stm_works', '', 0),
(601, 1, '2016-01-19 10:18:33', '2016-01-19 10:18:33', '[vc_row][vc_column][stm_works cols=\"3\" img_size=\"stm-image-350x195-croped\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391508197{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our work grid', '', 'publish', 'closed', 'closed', '', 'our-work-grid', '', '', '2016-01-19 10:18:33', '2016-01-19 10:18:33', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=601', 0, 'page', '', 0),
(606, 1, '2019-11-19 10:42:41', '2019-11-19 10:42:41', '[vc_row][vc_column][vc_single_image image=\"6474\" img_size=\"full\"][stm_spacing lg_spacing=\"40\" md_spacing=\"40\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<strong>For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.</strong>\n\nThe effort vastly improved the company’s planning and execution functions, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.[/vc_column_text][vc_custom_heading text=\"Challenge\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][vc_column_text]\n<ul>\n 	<li><strong>Improve sales and operations and production planning:\n</strong>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</li>\n 	<li><strong>Determine the right inventory level:</strong>\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.</li>\n 	<li>\n<p class=\"p1\"><strong>Optimize the supply chain for perfect order planning:</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</p>\n</li>\n</ul>\n[/vc_column_text][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"60\" xs_spacing=\"50\"][/vc_column][vc_column width=\"1/6\"][stm_share_buttons][/vc_column][/vc_row][vc_row css=\".vc_custom_1574327639280{background-color: #f2f4fa !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1574331762555{padding-right: 30px !important;padding-left: 30px !important;}\"][stm_spacing lg_spacing=\"21\" md_spacing=\"21\" sm_spacing=\"20\" xs_spacing=\"10\"][vc_custom_heading text=\"Solution\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.[/vc_column_text][stm_spacing lg_spacing=\"10\" md_spacing=\"10\" sm_spacing=\"10\" xs_spacing=\"10\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1576564920349{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][stm_spacing lg_spacing=\"340\" md_spacing=\"340\" sm_spacing=\"340\" xs_spacing=\"250\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading text=\"Results\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]All data and archives in a single spot. No need for mailing payslips or continually update the individual data of every representative.\n\nEvery customer gets a modified methodology, not a one-size-fits-all arrangement. We comprehend that every pioneer and every association is looked with interesting difficulties and conditions, and therefore requires explicit arrangements and bearing.[/vc_column_text][vc_column_text]By the numbers, the effort:\n<ul>\n 	<li><strong>Reduced lead time by 43%</strong></li>\n 	<li><strong>Decreased variability by 50%</strong></li>\n 	<li><strong>Lowered the risk of back-order by 95%</strong></li>\n 	<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"730\" height=\"320\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]', 'Focus on core delivers growth for retailer trading', 'Travel &amp; Aviation', 'publish', 'closed', 'closed', '', 'focus-on-core-delivers-growth-for-retailer', '', '', '2019-11-19 10:42:41', '2019-11-19 10:42:41', '', 0, 'http://consulting.stylemixthemes.com/?post_type=stm_works&amp;p=606', 0, 'stm_works', '', 0),
(607, 1, '2016-01-19 10:43:08', '2016-01-19 10:43:08', '[vc_row css=\".vc_custom_1459507322995{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"40\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310531973{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"Challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"Solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"Results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.\n\nThe effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.\n\nBy the numbers, the effort:\n<ul style=\"font-size: 13px; line-height: 22px;\">\n 	<li><strong>Reduced lead time by 43%</strong></li>\n 	<li><strong>Decreased variability by 50%</strong></li>\n 	<li><strong>Lowered the risk of back-order by 95%</strong></li>\n 	<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392065597{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Pricing games: A technology company boast', '', 'publish', 'closed', 'closed', '', 'omnichannel-strategy-boosts-fashion-company', '', '', '2016-01-19 10:43:08', '2016-01-19 10:43:08', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=607', 0, 'stm_works', '', 0),
(608, 1, '2019-11-19 10:43:49', '2019-11-19 10:43:49', '[vc_row][vc_column][vc_custom_heading text=\"Core responsibilities of Human Resource Management\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_video link=\"https://www.youtube.com/embed/04DRXybgLvA\" image=\"6474\" img_size=\"552x350\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Common Types of HR Services\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text]3box. Culture and different internal policies all have a significant impact on employee retention and engagement. This extremely important for growing businesses and start-ups. For sustainable growth, a big-picture strategy managed by HR professionals or service providers will be key.\n\nIt is necessary to develop and maintain a systematized framework to discover opportunities and enhance work performance, while ultimately contributing to the betterment and value of the entity.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"60\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"Stay ahead in a rapidly changing world\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"6474\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_tta_tabs shape=\"square\" alignment=\"center\" active_section=\"1\" el_class=\"theme_style\"][vc_tta_section title=\"Challenge\" tab_id=\"1574335304240-89df757f-f246\"][vc_custom_heading text=\"Challenge\" font_container=\"tag:h3|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Improve sales and operations and production planning:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Determine the right inventory level:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][stm_spacing lg_spacing=\"25\" md_spacing=\"25\" sm_spacing=\"25\" xs_spacing=\"25\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Solution\" tab_id=\"1574335751002-370bcd0f-d7cd\"][vc_custom_heading text=\"Solution\" font_container=\"tag:h3|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Improve sales and operations and production planning:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Determine the right inventory level:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][stm_spacing lg_spacing=\"25\" md_spacing=\"25\" sm_spacing=\"25\" xs_spacing=\"25\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Result\" tab_id=\"1574335749608-1269ffb2-289b\"][vc_custom_heading text=\"Result\" font_container=\"tag:h3|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Improve sales and operations and production planning:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li><strong>Determine the right inventory level:\n</strong>\n<p class=\"p1\">The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</p>\n</li>\n 	<li><strong>Optimize the supply chain for perfect order planning:\n</strong>\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][stm_spacing lg_spacing=\"25\" md_spacing=\"25\" sm_spacing=\"25\" xs_spacing=\"25\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]', 'Healthcare giant overcomes merger in 2015', 'Business Services', 'publish', 'closed', 'closed', '', 'healthcare-giant-overcomes-merger-risks-for-growth', '', '', '2019-11-19 10:43:49', '2019-11-19 10:43:49', '', 0, 'http://consulting.stylemixthemes.com/?post_type=stm_works&amp;p=608', 0, 'stm_works', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(609, 1, '2016-01-19 10:44:08', '2016-01-19 10:44:08', '[vc_row css=\".vc_custom_1459507052059{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"40\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310480533{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"Challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"Solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"Results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.\n\nThe effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.\n\nBy the numbers, the effort:\n<ul style=\"font-size: 13px; line-height: 22px;\">\n 	<li><strong>Reduced lead time by 43%</strong></li>\n 	<li><strong>Decreased variability by 50%</strong></li>\n 	<li><strong>Lowered the risk of back-order by 95%</strong></li>\n 	<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392072284{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Demand as transportation services as commerce', '', 'publish', 'closed', 'closed', '', 'applying-commercial-excellence-in-chemicals', '', '', '2016-01-19 10:44:08', '2016-01-19 10:44:08', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=609', 0, 'stm_works', '', 0),
(610, 1, '2016-01-19 10:45:01', '2016-01-19 10:45:01', '[vc_row css=\".vc_custom_1459507381132{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5223\" img_size=\"full\" css=\".vc_custom_1555516713197{margin-bottom: 44px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Consumer Products\"][vc_row_inner css=\".vc_custom_1453269110562{margin-bottom: 53px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]The image of a company is very important. Would you want to work with a consultation company whose office was in shambles? We judge things often by their appearance, especially when seeing something for the first time. If you are an excellent company with a bad image or appearance then you may have loyal clients but new clients will be hard to get.\n\nWhat does work, however, is the ability to present the company as being professional and experienced. When we walk into an office that is neatly arranged and greatly designed we immediately begin to think positively about the company.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"300\"][/vc_column_inner][/vc_row_inner][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" el_class=\"theme_style\"][vc_tta_section title=\"Challenge\" tab_id=\"1453266957006-3f3e3dff-6ef8\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Solution\" tab_id=\"1453268945960-188d55af-b1f3\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Result\" tab_id=\"1453268943534-fe1934ed-d1be\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391973470{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Constructing the best-in-class global assets', '', 'publish', 'closed', 'closed', '', 'constructing-a-best-in-class-global', '', '', '2016-01-19 10:45:01', '2016-01-19 10:45:01', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=610', 0, 'stm_works', '', 0),
(614, 1, '2016-01-19 12:44:15', '2016-01-19 12:44:15', '[vc_row css=\".vc_custom_1459507011960{margin-bottom: 100px !important;}\"][vc_column][stm_works style=\"grid_with_filter\" cols=\"3\" img_size=\"stm-image-350x195-croped\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391607711{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Our work with filter', '', 'publish', 'closed', 'closed', '', 'our-work-with-filter', '', '', '2016-01-19 12:44:15', '2016-01-19 12:44:15', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=614', 0, 'page', '', 0),
(619, 1, '2016-01-20 04:43:23', '2016-01-20 04:43:23', '[vc_row][vc_column][vc_wp_custommenu nav_menu=\"71\"][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\" css=\".vc_custom_1452752737760{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1559381283915{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1559381291431{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451998133493{margin-bottom: 30px !important;}\"][vc_column][stm_testimonials count=\"1\"][/vc_column][/vc_row]', 'VC Right Work Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-work-sidebar', '', '', '2016-01-20 04:43:23', '2016-01-20 04:43:23', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_vc_sidebar&amp;p=619', 0, 'stm_vc_sidebar', '', 0),
(722, 1, '2016-01-22 05:14:05', '2016-01-22 05:14:05', '<p>[vc_row css=\".vc_custom_1459507401741{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310402407{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]</p>\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:</p>\n<ul style=\"font-size: 13px;\">\n<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n<p>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n<p>With hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n<p>The diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</div>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.</p>\n<p>This allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.</p>\n<p>The effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.</p>\n<p>By the numbers, the effort:</p>\n<ul style=\"font-size: 13px; line-height: 22px;\">\n<li><strong>Reduced lead time by 43%</strong></li>\n<li><strong>Decreased variability by 50%</strong></li>\n<li><strong>Lowered the risk of back-order by 95%</strong></li>\n<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n<p>[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391962765{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Developing a strategy and roadmap for clients', '', 'publish', 'closed', 'closed', '', 'developing-a-strategy-and-roadmap', '', '', '2016-01-22 05:14:05', '2016-01-22 05:14:05', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=722', 0, 'stm_works', '', 0),
(723, 1, '2016-01-22 05:14:59', '2016-01-22 05:14:59', '[vc_row css=\".vc_custom_1459507421846{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5236\" img_size=\"full\" css=\".vc_custom_1555516778435{margin-bottom: 44px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Consumer Products\"][vc_row_inner css=\".vc_custom_1453269110562{margin-bottom: 53px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]The image of a company is very important. Would you want to work with a consultation company whose office was in shambles? We judge things often by their appearance, especially when seeing something for the first time. If you are an excellent company with a bad image or appearance then you may have loyal clients but new clients will be hard to get.\n\nWhat does work, however, is the ability to present the company as being professional and experienced. When we walk into an office that is neatly arranged and greatly designed we immediately begin to think positively about the company.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"247\"][/vc_column_inner][/vc_row_inner][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" el_class=\"theme_style\"][vc_tta_section title=\"challenge\" tab_id=\"1453266957006-3f3e3dff-6ef8\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"solution\" tab_id=\"1453268945960-188d55af-b1f3\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"result\" tab_id=\"1453268943534-fe1934ed-d1be\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392093865{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Bain helps transportation & logistics companies', '', 'publish', 'closed', 'closed', '', 'bain-helps-transportation-companies', '', '', '2016-01-22 05:14:59', '2016-01-22 05:14:59', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=723', 0, 'stm_works', '', 0),
(725, 1, '2016-01-22 05:16:05', '2016-01-22 05:16:05', '<p>[vc_row css=\".vc_custom_1459507444937{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"40\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456306022186{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]</p>\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:</p>\n<ul style=\"font-size: 13px;\">\n<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n<p>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n<p>With hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n<p>The diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</div>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.</p>\n<p>This allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.</p>\n<p>The effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.</p>\n<p>By the numbers, the effort:</p>\n<ul style=\"font-size: 13px; line-height: 22px;\">\n<li><strong>Reduced lead time by 43%</strong></li>\n<li><strong>Decreased variability by 50%</strong></li>\n<li><strong>Lowered the risk of back-order by 95%</strong></li>\n<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n<p>[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391910288{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Leading consumer products companies', '', 'publish', 'closed', 'closed', '', 'leading-consumer-products-companies', '', '', '2016-01-22 05:16:05', '2016-01-22 05:16:05', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=stm_works&amp;p=725', 0, 'stm_works', '', 0),
(738, 1, '2019-12-09 05:36:33', '2019-12-09 05:36:33', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_spacing lg_spacing=\"6\" md_spacing=\"6\" sm_spacing=\"6\" xs_spacing=\"6\"][vc_single_image source=\"featured_image\" img_size=\"1130x450\"][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"50\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_post_about_author style=\"style_2\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\" css=\".vc_custom_1576127026730{padding-right: 45px !important;}\"][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_tags][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_share_buttons][/vc_column][/vc_row]', 'Cloud and Infrastructure service', '                Supported by a robust sales force and tight cost controls, Pharm Ltd. experienced sustained double-digit growth over a number of years, only to find that their supply chain struggled to keep pace.', 'publish', 'open', 'open', '', 'cloud-and-infrastructure-service', '', '', '2021-04-06 10:54:05', '2021-04-06 10:54:05', '', 0, 'http://consulting.stylemixthemes.com/?p=738', 0, 'post', '', 0),
(834, 1, '2016-01-24 09:08:33', '2016-01-24 09:08:33', '', 'Shop', '', 'publish', 'closed', 'closed', '', 'shop-2', '', '', '2016-01-24 09:08:33', '2016-01-24 09:08:33', '', 0, 'http://consulting.stylemixthemes.com/demo/shop/', 0, 'page', '', 0),
(835, 1, '2016-01-24 09:08:33', '2016-01-24 09:08:33', '[woocommerce_cart]', 'Cart', '', 'publish', 'closed', 'closed', '', 'cart', '', '', '2016-01-24 09:08:33', '2016-01-24 09:08:33', '', 834, 'http://consulting.stylemixthemes.com/demo/cart/', 0, 'page', '', 0),
(836, 1, '2016-01-24 09:08:33', '2016-01-24 09:08:33', '[woocommerce_checkout]', 'Checkout', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2016-01-24 09:08:33', '2016-01-24 09:08:33', '', 834, 'http://consulting.stylemixthemes.com/demo/checkout/', 0, 'page', '', 0),
(837, 1, '2016-01-24 09:08:33', '2016-01-24 09:08:33', '[woocommerce_my_account]', 'my account', '', 'publish', 'closed', 'closed', '', 'my-account', '', '', '2016-01-24 09:08:33', '2016-01-24 09:08:33', '', 834, 'http://consulting.stylemixthemes.com/demo/my-account/', 0, 'page', '', 0),
(889, 1, '2013-06-07 11:00:28', '2013-06-07 11:00:28', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Ship Your Idea', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'ship-your-idea-2', '', '', '2013-06-07 11:00:28', '2013-06-07 11:00:28', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=40', 0, 'product', '', 0),
(892, 1, '2013-06-07 11:05:37', '2013-06-07 11:05:37', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'The art of the deal', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'happy-ninja-2', '', '', '2013-06-07 11:05:37', '2013-06-07 11:05:37', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=53', 0, 'product', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(895, 1, '2013-06-07 11:25:01', '2013-06-07 11:25:01', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Business Adventures', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'flying-ninja', '', '', '2013-06-07 11:25:01', '2013-06-07 11:25:01', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=70', 0, 'product', '', 0),
(898, 1, '2013-06-07 10:59:15', '2013-06-07 10:59:15', '', 'Variation #42 of Ship Your Idea', '', 'publish', 'open', 'open', '', 'product-40-variation-2', '', '', '2013-06-07 10:59:15', '2013-06-07 10:59:15', '', 889, 'http://demo2.woothemes.com/woocommerce/?product_variation=product-40-variation-2', 1, 'product_variation', '', 0),
(900, 1, '2013-06-07 11:33:05', '2013-06-07 11:33:05', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Art of the Start', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-album-1', '', '', '2013-06-07 11:33:05', '2013-06-07 11:33:05', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=83', 0, 'product', '', 0),
(901, 1, '2013-06-07 11:34:14', '2013-06-07 11:34:14', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Built to Last', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-album-2', '', '', '2013-06-07 11:34:14', '2013-06-07 11:34:14', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=87', 0, 'product', '', 0),
(902, 1, '2013-06-07 11:35:18', '2013-06-07 11:35:18', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'The Innovator\'s Dilemma', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-album-3', '', '', '2013-06-07 11:35:18', '2013-06-07 11:35:18', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=90', 0, 'product', '', 0),
(903, 1, '2013-06-07 11:36:34', '2013-06-07 11:36:34', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'The Lean Startup', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-single-1', '', '', '2013-06-07 11:36:34', '2013-06-07 11:36:34', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=93', 0, 'product', '', 0),
(904, 1, '2013-06-07 11:37:23', '2013-06-07 11:37:23', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'Good to Great', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-album-4', '', '', '2013-06-07 11:37:23', '2013-06-07 11:37:23', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=96', 0, 'product', '', 0),
(905, 1, '2013-06-07 11:38:12', '2013-06-07 11:38:12', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'How to Win Friends', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.', 'publish', 'open', 'closed', '', 'woo-single-2', '', '', '2013-06-07 11:38:12', '2013-06-07 11:38:12', '', 0, 'http://demo2.woothemes.com/woocommerce/?post_type=product&amp;p=99', 0, 'product', '', 0),
(979, 1, '2016-02-19 06:35:00', '2016-02-19 06:35:00', '[vc_row css=\".vc_custom_1450677977665{margin-bottom: 0px !important;}\"][vc_column][rev_slider_vc alias=\"main_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1450692516354{margin-bottom: 60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" btn_add_icon=\"true\" btn_button_block=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1453273274030{margin-bottom: 0px !important;}\" use_custom_fonts_h2=\"true\"][/vc_cta][/vc_column][/vc_row][vc_row css=\".vc_custom_1450856873482{margin-bottom: 37px !important;}\"][vc_column width=\"1/3\"][stm_animation_block animation=\"fadeInUp\" animation_duration=\"1\" animation_delay=\"0\"][stm_info_box icon=\"fa fa-chevron-right\" title=\"Why our consulting\" image=\"696\" link=\"url:%23|title:read%20more|\"]We are a full service business development group – we build strategies and systems.[/stm_info_box][/stm_animation_block][/vc_column][vc_column width=\"1/3\"][stm_animation_block animation=\"fadeInUp\" animation_duration=\"1\" animation_delay=\"0.05\"][stm_info_box icon=\"fa fa-chevron-right\" title=\"Global consumer insights\" image=\"692\" link=\"url:%23|title:read%20more|\"]Rapid and sustainable solutions to the most complex business challenges with cooperative process-driven.[/stm_info_box][/stm_animation_block][/vc_column][vc_column width=\"1/3\"][stm_animation_block animation=\"fadeInUp\" animation_duration=\"1\" animation_delay=\"0.1\"][stm_info_box icon=\"fa fa-chevron-right\" title=\"Thought Leadership\" image=\"695\" link=\"url:%23|title:read%20more|\"]A solution is proposed, from here you can action the plan with just outline assistance.[/stm_info_box][/stm_animation_block][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1451476985704{padding-top: 53px !important;padding-bottom: 70px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"industries\" font_container=\"tag:h2|font_size:45px|text_align:center|line_height:60px\" use_theme_fonts=\"yes\" el_class=\"base_font_color\" css=\".vc_custom_1451477220404{margin-bottom: 76px !important;}\"][vc_row_inner css=\".vc_custom_1450870589488{margin-bottom: 48px !important;}\"][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"15\" icon_width=\"70\" title=\"Travel and Aviation\nConsulting\"]Study popular tourism destinations and improve your sales skills to successfully advise your clients on the best travel options.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-graph\" style=\"icon_left\" icon_size=\"22\" icon_width=\"70\" title=\"Business Services\nConsulting\"]We consider all the drivers of change - from the ground up and we\'ll motivate and support you to make the change.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-cart\" style=\"icon_left\" icon_size=\"22\" icon_width=\"70\" title=\"Consumer Products\nConsulting\"]Design repeatable growth models and innovation pipelines that generate new products with higher potential and lower risks of failure.[/stm_icon_box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-home\" style=\"icon_left\" icon_size=\"24\" icon_width=\"70\" title=\"Financial Services\nConsulting\"]We work buy-side and sell-side and give our clients hard-hitting and objective answers and focus hard on the best opportunities.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-lamp\" style=\"icon_left\" icon_size=\"28\" icon_width=\"70\" title=\"Energy and Environment\nConsulting\"]We work across all the major construction geographies and end sectors, meaning we understand the underlying drivers in construction markets.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"20\" icon_width=\"70\" title=\"Surface Transport &amp;\nLogistics Consulting\"]Scheduled transport operations, from broad market trends and strategy to the development of integrated commercial strategies.[/stm_icon_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay fixed_bg\" css=\".vc_custom_1453961868724{margin-bottom: 53px !important;padding-top: 110px !important;padding-bottom: 81px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/Fotolia_95381323_Subscription-1.jpg?id=786) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Doing the right thing,</mark>\nat the right time.\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" google_fonts=\"font_family:Poppins%3A300%2Cregular%2C500%2C600%2C700|font_style:700%20bold%3A700%3Anormal\" custom_icon=\"stm-check\" css=\".vc_custom_1453448521712{margin-bottom: 61px !important;}\" el_class=\"no_stripe\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\" offset=\"vc_col-lg-offset-1\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1450960276268{margin-bottom: 73px !important;}\"][vc_column][vc_custom_heading text=\"testimonials\" font_container=\"tag:h2|font_size:45px|text_align:center|line_height:60px\" use_theme_fonts=\"yes\" el_class=\"base_font_color\" css=\".vc_custom_1453275785238{margin-bottom: 76px !important;}\"][stm_testimonials_carousel count=\"6\" per_row=\"2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1450961224119{padding-top: 41px !important;padding-bottom: 42px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel img_size=\"180x96\" images=\"115,114,113,112,111,110\" el_class=\"no_paddings\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1453381142995{margin-bottom: 42px !important;padding-top: 66px !important;padding-bottom: 66px !important;background-image: url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/partners_bg-1.jpg?id=122) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_custom_heading text=\"To help entrepreneurs get their act together\n<mark>before they talk to investors.</mark>\" font_container=\"tag:div|font_size:28px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Poppins%3A300%2Cregular%2C500%2C600%2C700|font_style:700%20bold%3A700%3Anormal\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451479401686{margin-bottom: 31px !important;}\"][vc_column][vc_custom_heading text=\"news\" font_container=\"tag:h2|font_size:45px|text_align:center\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451043728133{margin-bottom: 32px !important;}\"][vc_column][stm_news posts_per_row=\"4\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1451300723020{margin-bottom: 0px !important;padding-top: 96px !important;padding-bottom: 80px !important;background-color: #222222 !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"request a call back.\" font_container=\"tag:div|font_size:36px|text_align:left|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Poppins%3A300%2Cregular%2C500%2C600%2C700|font_style:700%20bold%3A700%3Anormal\" css=\".vc_custom_1451044003374{margin-bottom: 19px !important;}\"][vc_column_text]<span style=\"color: #ffffff; font-size: 13px; line-height: 22px;\">Would you like to speak to one of our financial advisers over the phone? Just submit your details and we’ll be in touch shortly. You can also email us if you would prefer.</span>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"4\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1453109987955{margin-bottom: -60px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column][stm_gmap map_height=\"447px\" map_zoom=\"11\" disable_mouse_whell=\"disable\"][stm_gmap_address title=\"United Kingdom\" address=\"14 Tottenham Road, N1 4EP, London, United Kingdom\" phone=\"+1 212-226-3126\" email=\"head@consultingwp.com\" lat=\"51.507351\" lng=\"-0.127758\"][stm_gmap_address title=\"Germany\" address=\"148 Commercity Isola Road, M1 R43 Berlin, Germany\" phone=\"+3 864-784-4848\" email=\"satellite@consultingwp.com\" lat=\"52.520007\" lng=\"13.404954\"][stm_gmap_address title=\"Spain\" address=\"10 Via Della Consordia Road, S3 7ME Madrid, Spain\" phone=\"+1 212-226-3126\" email=\"palmagency@consultingwp.com\" lat=\"40.416775\" lng=\"-3.703790\"][stm_gmap_address title=\"Head Quarter\" address=\"14 Mao Road, N1 4EP, Los Angelos, USA\" phone=\"+1 212-226-3126\" email=\"head@consultingwp.com\" lat=\"34.052234\" lng=\"-118.243685\"][stm_gmap_address title=\"United States\" address=\"148 Commercity Isola Road, M1 R43 New York, USA\" phone=\"+3 864-784-4848\" email=\"satellite@consultingwp.com\" lat=\"40.712784\" lng=\"-74.005941\"][stm_gmap_address title=\"Sales Office\" address=\"10 Via Della Consordia Road, S3 7ME Miami, USA\" phone=\"+1 212-226-3126\" email=\"sales@consultingwp.com\" lat=\"25.761680\" lng=\"-80.191790\"][/stm_gmap][/vc_column][/vc_row]', 'home 2', '', 'publish', 'closed', 'closed', '', 'home-2', '', '', '2016-02-19 06:35:00', '2016-02-19 06:35:00', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=979', 0, 'page', '', 0),
(1071, 1, '2015-12-14 07:14:55', '2015-12-14 07:14:55', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_images_carousel images=\"6962,6958,6959,6960,6961\" img_size=\"full\" onclick=\"link_no\" slides_per_view=\"5\" hide_pagination_control=\"yes\" hide_prev_next_buttons=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'publish', 'closed', 'closed', '', 'sample-page-2', '', '', '2021-05-01 08:35:38', '2021-05-01 08:35:38', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=2', 0, 'page', '', 0),
(1076, 1, '2015-12-14 07:14:55', '2015-12-14 07:14:55', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392508550{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Narrow Your Focus to Prevent Overanalysis', 'What is this highly valuable asset? Its own people. Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?”', 'publish', 'open', 'open', '', 'narrow-your-focus-to-prevent-overanalysis', '', '', '2015-12-14 07:14:55', '2015-12-14 07:14:55', '', 0, 'http://consulting.stylemixthemes.com/demo/?p=1', 0, 'post', '', 0),
(1077, 1, '2016-02-24 12:01:08', '2016-02-24 12:01:08', '[vc_row css=\".vc_custom_1459404415716{margin-bottom: 40px !important;}\"][vc_column][stm_testimonials_carousel style=\"style_3\" count=\"6\" per_row=\"2\" disable_carousel=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545393763628{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Testimonials 2', '', 'publish', 'closed', 'closed', '', 'layout-2', '', '', '2016-02-24 12:01:08', '2016-02-24 12:01:08', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=1074', 0, 'page', '', 0),
(1098, 1, '2017-02-07 12:16:39', '2017-02-07 12:16:39', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'I Spent $68,440 Testing Different Blog Posts', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'i-spent-68440-testing-different-blog-posts', '', '', '2017-02-07 12:16:39', '2017-02-07 12:16:39', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1098', 0, 'stm_event', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1099, 1, '2017-02-07 12:18:50', '2017-02-07 12:18:50', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'I Spent $48,000 Testing Different Blog Designs', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'i-spent-48000-testing-different-blog-designs', '', '', '2017-02-07 12:18:50', '2017-02-07 12:18:50', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1099', 0, 'stm_event', '', 0),
(1100, 1, '2017-02-07 12:28:11', '2017-02-07 12:28:11', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][vc_row_inner css=\".vc_custom_1484550790519{margin-bottom: 16px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"event program\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544779321798{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text]\n<ul>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>5:30 PM — 6:00 PM</strong>\nProfessional, able to interact with vendors/clients</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:00 PM — 6:30 PM</strong>\nAbility to take a big picture idea and run with it</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:30 PM — 7:00 PM</strong>\nWorks well both independently and as part of a team</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:00 PM — 7:30 PM</strong>\nKnowledge of SPSS or other analytical software</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:30 PM — 8:30 PM</strong>\nPersonal accountability and strong work ethic</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"our speakers\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" css=\".vc_custom_1544779334708{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642282299{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2886 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff7-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Berg Devien</strong></span>\n<span style=\"font-size: 14px;\"> Candidates can look forward to regular client contact, a role in business development.</span>[/vc_column_text][vc_empty_space height=\"14px\" css=\".vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642257653{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2883 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff4-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Priscilla Sorvino</strong></span>\n<span style=\"font-size: 14px;\"> Proposal writing/methodology creation, and a leading role in managing a project to finish.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'Communicate with Your Employees, Motivate them, and Reward them', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'communicate-with-your-employees-motivate-them-and-reward-them', '', '', '2017-02-07 12:28:11', '2017-02-07 12:28:11', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1100', 0, 'stm_event', '', 0),
(1101, 1, '2017-02-07 12:30:13', '2017-02-07 12:30:13', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'Start with Good People, lay out the Rules', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'start-with-good-people-lay-out-the-rules', '', '', '2017-02-07 12:30:13', '2017-02-07 12:30:13', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1101', 0, 'stm_event', '', 0),
(1102, 1, '2017-02-07 12:32:00', '2017-02-07 12:32:00', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][vc_row_inner css=\".vc_custom_1484550790519{margin-bottom: 16px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"event program\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544779279687{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text]\n<ul>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>5:30 PM — 6:00 PM</strong>\nProfessional, able to interact with vendors/clients</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:00 PM — 6:30 PM</strong>\nAbility to take a big picture idea and run with it</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:30 PM — 7:00 PM</strong>\nWorks well both independently and as part of a team</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:00 PM — 7:30 PM</strong>\nKnowledge of SPSS or other analytical software</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:30 PM — 8:30 PM</strong>\nPersonal accountability and strong work ethic</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"our speakers\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" css=\".vc_custom_1544779292629{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642192747{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2881 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff2-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Berg Devien</strong></span>\n<span style=\"font-size: 14px;\"> Candidates can look forward to regular client contact, a role in business development.</span>[/vc_column_text][vc_empty_space height=\"14px\" css=\".vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642207803{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2882 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff3-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Priscilla Sorvino</strong></span>\n<span style=\"font-size: 14px;\"> Proposal writing/methodology creation, and a leading role in managing a project to finish.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'Thought Processes and see what Happen', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'thought-processes-and-see-what-happen', '', '', '2017-02-07 12:32:00', '2017-02-07 12:32:00', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1102', 0, 'stm_event', '', 0),
(1103, 1, '2017-02-07 12:37:47', '2017-02-07 12:37:47', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'Apply them in Your Own Routines', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'apply-them-in-your-own-routines', '', '', '2017-02-07 12:37:47', '2017-02-07 12:37:47', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1103', 0, 'stm_event', '', 0),
(1272, 1, '2016-04-01 05:23:50', '2016-04-01 05:23:50', '<div class=\"request_callback_5\">\n    <div class=\"my_flex_\">\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n               <span class=\"stm-amsterdam-profile my_pos_abs_fa\"></span> [text* text-name placeholder akismet:author \"Your name\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_pdl\">\n                <span class=\"stm-denver-envelope my_pos_abs_fa\"></span> [email* email-752 placeholder \"E-mail\"]\n            </div>\n        </div>\n        <div class=\"my_flex_in\">\n            <div class=\"input-group my_input_mg\">\n                <button type=\"submit\" class=\"button theme_style_2 size-lg\" style=\"color: white; border-radius:0;\" >Send Request</button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[text-name][email-752]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Request A Call Back 5', '', 'publish', 'closed', 'closed', '', 'request-a-call-back_copy-3', '', '', '2016-04-01 05:23:50', '2016-04-01 05:23:50', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=wpcf7_contact_form&amp;p=1272', 0, 'wpcf7_contact_form', '', 0),
(1380, 1, '2016-04-18 07:33:57', '2016-04-18 07:33:57', '<div class=\"request_callback_6\">\n    <div class=\"row\">\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n    </div>\n    <div class=\"row\">\n      <div class=\"col-xs-12\">\n        <div class=\"input-group text-center\">\n          <button type=\"submit\" class=\"button theme_style_2 size-lg icon_right\">SUBMIT <i class=\"fa fa-chevron-right\"></i></button>\n        </div>\n     </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[text-name]\n[phone]\n[services_consulting]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Request A Call Back 6', '', 'publish', 'closed', 'closed', '', 'request-a-call-back-5_copy', '', '', '2016-04-18 07:33:57', '2016-04-18 07:33:57', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=wpcf7_contact_form&amp;p=1380', 0, 'wpcf7_contact_form', '', 0),
(1469, 1, '2017-02-09 13:58:49', '2017-02-09 13:58:49', '[vc_row css=\".vc_custom_1483625644357{margin-bottom: 40px !important;}\"][vc_column][vc_wp_search][vc_custom_heading stripe_pos=\"hide\" text=\"company events\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23000000|line_height:16px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544771062252{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}\"][stm_events event_style=\"widget\" posts_per_page=\"3\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1483626248518{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1483625402613{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1545390142126{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1545390153547{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_archives title=\"archive\" options=\"dropdown\"][vc_wp_posts title=\"recent news\" number=\"2\" show_date=\"1\"][vc_wp_tagcloud taxonomy=\"post_tag\"][vc_custom_heading stripe_pos=\"hide\" text=\"see our gallery\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23000000|line_height:16px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544778498162{margin-bottom: 27px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_gallery images=\"696,5227,5245,5223,5242,701\" img_size=\"75x75\"][/vc_column][/vc_row]', 'VC Right Events Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-events-sidebar', '', '', '2017-02-09 13:58:49', '2017-02-09 13:58:49', '', 0, 'http://consult.loc/?post_type=stm_vc_sidebar&amp;p=1469', 0, 'stm_vc_sidebar', '', 0),
(1470, 1, '2017-02-09 14:00:05', '2017-02-09 14:00:05', '[vc_row css=\".vc_custom_1483698864920{margin-right: 0px !important;margin-bottom: 40px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1483698904503{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1545390030180{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1545390047963{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1483700499841{margin-bottom: 40px !important;}\"][vc_column][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\" css=\".vc_custom_1483700340016{margin-bottom: 40px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"company events\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23000000|line_height:16px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544771119147{margin-bottom: 22px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}\"][stm_events event_style=\"widget\" posts_per_page=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_archives title=\"archive\" options=\"dropdown\"][vc_custom_heading stripe_pos=\"hide\" text=\"see our gallery\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23000000|line_height:16px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544771128332{margin-bottom: 27px !important;border-top-width: 3px !important;padding-top: 30px !important;border-top-style: solid !important;}\"][vc_gallery images=\"696,701,5282,5281,5245,5227\" img_size=\"75x75\"][vc_wp_posts title=\"recent news\" number=\"2\" show_date=\"1\"][vc_wp_tagcloud taxonomy=\"post_tag\"][/vc_column][/vc_row]', 'VC Right Event Sidebar', '', 'publish', 'closed', 'closed', '', 'vc-right-event-sidebar', '', '', '2017-02-09 14:00:05', '2017-02-09 14:00:05', '', 0, 'http://consult.loc/?post_type=stm_vc_sidebar&amp;p=1470', 0, 'stm_vc_sidebar', '', 0),
(1471, 1, '2017-02-09 14:00:32', '2017-02-09 14:00:32', '[vc_row css=\".vc_custom_1452056597103{margin-right: 0px !important;margin-bottom: 30px !important;margin-left: 0px !important;}\" el_class=\"third_bg_color\"][vc_column css=\".vc_custom_1452056633692{padding-top: 37px !important;padding-right: 30px !important;padding-bottom: 40px !important;padding-left: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"how can we help you?\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1545389977001{margin-bottom: 9px !important;}\"][vc_column_text css=\".vc_custom_1545389989697{margin-bottom: 17px !important;}\"]<span style=\"font-size: 13px; line-height: 22px; color: #222222;\">Contact us at the Consulting WP office nearest to you or submit a business inquiry online.</span>[/vc_column_text][vc_btn title=\"contacts\" style=\"flat\" color=\"white\" size=\"sm\" i_icon_fontawesome=\"fa fa-phone-square\" add_icon=\"true\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1451998133493{margin-bottom: 30px !important;}\"][vc_column][vc_btn title=\"Company presentation\" style=\"flat\" color=\"theme_style_1\" size=\"lg\" align=\"left\" i_icon_fontawesome=\"fa fa-file-pdf-o\" button_block=\"true\" add_icon=\"true\"][/vc_column][/vc_row][vc_row][vc_column][stm_testimonials count=\"1\"][/vc_column][/vc_row]', 'Sidebar appointment', '', 'publish', 'closed', 'closed', '', 'sidebar-appointment', '', '', '2017-02-09 14:00:32', '2017-02-09 14:00:32', '', 0, 'http://consult.loc/?post_type=stm_vc_sidebar&amp;p=1471', 0, 'stm_vc_sidebar', '', 0),
(1474, 1, '2017-02-09 14:01:18', '2017-02-09 14:01:18', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [text title placeholder akismet:author_title \"Title\"]\n            </div>\n            <div class=\"input-group\">\n                [text company placeholder akismet:author_company \"Company/Position\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n            </div>\n            <div class=\"input-group\">\n                [text* subject placeholder akismet:author_subject \"Subject *\"]\n            </div>\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[text-name][title][company][email][menu-774][menu-363][subject][message]\n\n\n\n\n\nCon Two \"[your-subject]\"\nCon Two <wordpress@consult.loc>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\nReply-To: dl@stylemix.net\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Feedback Form2', '', 'publish', 'closed', 'closed', '', 'feedback-form2', '', '', '2017-02-09 14:01:18', '2017-02-09 14:01:18', '', 0, 'http://consult.loc/?post_type=wpcf7_contact_form&amp;p=1472', 0, 'wpcf7_contact_form', '', 0),
(1475, 1, '2017-02-09 14:02:00', '2017-02-09 14:02:00', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-4 col-xs-12\">\n            <div class=\"input-group\">\n                [text* subject placeholder \"Subject *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[message][text-name][email][subject]\n\n\n\n\n\nCon Two \"[your-subject]\"\nCon Two <wordpress@consult.loc>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\nReply-To: dl@stylemix.net\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Feedback Form3', '', 'publish', 'closed', 'closed', '', 'feedback-form3', '', '', '2017-02-09 14:02:00', '2017-02-09 14:02:00', '', 0, 'http://consult.loc/?post_type=wpcf7_contact_form&amp;p=1473', 0, 'wpcf7_contact_form', '', 0),
(1476, 1, '2017-02-09 14:02:29', '2017-02-09 14:02:29', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea* message class:height205 placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* email placeholder akismet:author_email \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n            </div>\n        </div>\n        <div class=\"col-lg-4 col-md-4 col-sm-12 col-xs-12\">\n            <div class=\"input-group\">\n                [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n            </div>\n            <div class=\"input-group\">\n                [text* subject placeholder akismet:author_subject \"Subject *\"]\n            </div>\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[message][text-name][email][menu-774][menu-363][subject]\n\n\n\n\n\nCon Two \"[your-subject]\"\nCon Two <wordpress@consult.loc>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\nReply-To: dl@stylemix.net\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Feedback Form4', '', 'publish', 'closed', 'closed', '', 'feedback-form4', '', '', '2017-02-09 14:02:29', '2017-02-09 14:02:29', '', 0, 'http://consult.loc/?post_type=wpcf7_contact_form&amp;p=1474', 0, 'wpcf7_contact_form', '', 0),
(1477, 1, '2017-02-09 14:03:00', '2017-02-09 14:03:00', '<div class=\"request_callback\">\n        <div class=\"input-group\">\n            [textarea* message class:height147 placeholder \"Your Message *\"]\n        </div>\n        <div class=\"input-group\">\n            [text* text-name placeholder akismet:author \"First name *\"]\n        </div>\n        <div class=\"input-group\">\n            [email* email placeholder akismet:author_email \"E-mail *\"]\n        </div>\n        <div class=\"input-group\">\n            [select* menu-774 first_as_label \"Reason for Contact *\" \"Value1\" \"Value2\"]\n        </div>\n        <div class=\"input-group\">\n            [select* menu-363 first_as_label \"Area of Interest *\" \"Value1\" \"Value2\"]\n        </div>\n        <div class=\"input-group\">\n            [text* subject placeholder akismet:author_subject \"Subject *\"]\n        </div>\n        <div class=\"input-group\">\n            <button type=\"submit\" class=\"button size-lg icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n        </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[message][text-name][email][menu-774][menu-363][subject]\n\n\n\n\n\nCon Two \"[your-subject]\"\nCon Two <wordpress@consult.loc>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Con Two (http://consult.loc)\nReply-To: dl@stylemix.net\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Feedback Form5', '', 'publish', 'closed', 'closed', '', 'feedback-form5', '', '', '2017-02-09 14:03:00', '2017-02-09 14:03:00', '', 0, 'http://consult.loc/?post_type=wpcf7_contact_form&amp;p=1475', 0, 'wpcf7_contact_form', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1478, 1, '2017-02-09 14:09:06', '2017-02-09 14:09:06', '[vc_row css=\".vc_custom_1485429758182{margin-bottom: 23px !important;}\"][vc_column][vc_column_text]<span style=\"color: #444444; font-size: 16px; letter-spacing: -0.4px;\">Please let us know if you have a question, want to leave a comment, or would like further information about Consulting WP.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1485430310469{margin-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-3 vc_col-md-6\"][stm_icon_box box_style=\"style_3\" icon=\"stm-phone_13_2\" icon_size=\"16\" icon_border_color=\"third\" icon_line_height=\"48\"]\n<p style=\"font-weight: 400; letter-spacing: -0.40px;\"><span style=\"color: #595959;\">Call us</span>\n<span style=\"font-size: 18px; color: #1a1a1a;\">+1 212 386 5575</span></p>\n[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-6\"][stm_icon_box box_style=\"style_3\" icon=\"fa fa-fax\" icon_size=\"16\" icon_border_color=\"third\" icon_line_height=\"48\"]\n<p style=\"font-weight: 400; letter-spacing: -0.40px;\"><span style=\"color: #595959;\">Fax</span>\n<span style=\"font-size: 18px; color: #1a1a1a;\">+1 212 386 5577</span></p>\n[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-6\"][stm_icon_box box_style=\"style_3\" icon=\"fa fa-envelope\" icon_size=\"16\" icon_border_color=\"third\" icon_line_height=\"48\"]\n<p style=\"font-weight: 400; letter-spacing: -0.40px;\"><span style=\"color: #595959;\">Have any questions?</span>\n<span style=\"color: #1a1a1a;\">info@consulting.com</span></p>\n[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-6\"][stm_icon_box box_style=\"style_3\" icon=\"stm-marker\" icon_size=\"16\" icon_border_color=\"third\" icon_line_height=\"48\"]\n<p style=\"font-weight: 400; letter-spacing: -0.40px;\"><span style=\"color: #595959;\">1010 Avenue of the Moon, New York, NY 10018 U.S.</span></p>\n[/stm_icon_box][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1549473076267{margin-bottom: -60px !important;padding-top: 63px !important;padding-bottom: 30px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h2|font_size:28px|text_align:left|line_height:34px\" use_theme_fonts=\"yes\" css=\".vc_custom_1544778890396{margin-bottom: 30px !important;}\"][contact-form-7 id=\"1475\"][/vc_column][/vc_row]', 'Contact three', '', 'publish', 'closed', 'closed', '', 'contact-three', '', '', '2017-02-09 14:09:06', '2017-02-09 14:09:06', '', 0, 'http://consult.loc/?page_id=1478', 0, 'page', '', 0),
(1480, 1, '2017-02-09 14:10:42', '2017-02-09 14:10:42', '[vc_row][vc_column][vc_column_text css=\".vc_custom_1521796998612{margin-bottom: 40px !important;}\"]<span style=\"color: #444444; font-size: 16px; letter-spacing: -0.4px;\">Please let us know if you have a question, want to leave a comment, or would like further information about Consulting WP.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1485495419934{margin-bottom: 0px !important;}\"][vc_column offset=\"vc_col-lg-4\" css=\".vc_custom_1485435561407{margin-bottom: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"Client inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472855106{margin-top: -5px !important;margin-bottom: -13px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][stm_contacts_widget style=\"style_4\" address=\"1010 Avenue of the Moon\nNew York, NY 10018 US.\" email=\"info@stylemixthemes.com\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\" phones_all=\"+1 212 386 5575\n\n+1 212 386 7575\" phone=\"+1 212 386 5575\" phone_two=\"+1 212 386 7575\"][/vc_column][vc_column offset=\"vc_col-lg-4\" css=\".vc_custom_1485435566908{margin-bottom: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"Recruiting inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472867285{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text css=\".vc_custom_1485495377819{margin-bottom: 20px !important;}\"]<span style=\"line-height: 22px;\">For more information regarding current career opportunities, please contact:</span>[/vc_column_text][stm_contact style=\"style_2\" name=\"Amanda Seyfried\" image=\"452\" job=\"Recruiting Manager\" email=\"recruiting@stylemixthemes.com\" phone=\"+1 212 123 4505\" phone_two=\"+1 212 202 3335\"][/vc_column][vc_column offset=\"vc_col-lg-4\" css=\".vc_custom_1485435572601{margin-bottom: 30px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"Press inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472875235{margin-top: -5px !important;margin-bottom: -8px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text css=\".vc_custom_1485495382603{margin-bottom: 20px !important;}\"]<span style=\"line-height: 22px;\">If you are a member of the press and would like to speak with someone at Consulting, please contact:</span>[/vc_column_text][stm_contact style=\"style_2\" name=\"Donald Simpson\" image=\"451\" job=\"Senior Marketing Manager\" email=\"d.simpson@stylemixthemes.com\" phone=\"+1 212 123 4040\" phone_two=\"+1 212 617 5050\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485495492516{margin-bottom: 27px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIzODMlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485495581044{margin-bottom: 0px !important;}\"][vc_column][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1549472970603{margin-bottom: 28px !important;}\"][contact-form-7 id=\"1476\"][/vc_column][/vc_row]', 'Contact four', '', 'publish', 'closed', 'closed', '', 'contact-four', '', '', '2017-02-09 14:10:42', '2017-02-09 14:10:42', '', 0, 'http://consult.loc/?page_id=1480', 0, 'page', '', 0),
(1483, 1, '2017-02-09 14:13:33', '2017-02-09 14:13:33', '[vc_row full_height=\"yes\" columns_placement=\"top\" equal_height=\"yes\"][vc_column offset=\"vc_col-lg-8\" css=\".vc_custom_1485439524000{padding-top: 58px !important;}\"][vc_custom_heading text=\"Contact us\" use_theme_fonts=\"yes\" css=\".vc_custom_1521797097910{margin-bottom: 51px !important;}\"][vc_column_text css=\".vc_custom_1521797106402{margin-bottom: 30px !important;}\"]<span style=\"color: #444444; font-size: 16px; letter-spacing: -0.4px;\">Please let us know if you have a question, want to leave a comment, or would like further information about Consulting WP.</span>[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"Client inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472906580{margin-top: -5px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 10px !important;border-top-style: solid !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1485495966997{margin-bottom: 5px !important;}\"][stm_contacts_widget style=\"style_4\" address=\"1010 Avenue of the Moon\nNew York, NY 10018, United States\" phone=\"+1 212 386 5575\" phone_two=\"+1 212 386 5577\" fax=\"+1 212 386 5555\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1485495976629{margin-bottom: 5px !important;}\"][stm_contacts_widget style=\"style_4\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\" schedule=\"Monday–Saturday: 8:00AM–6:00PM\nSunday: CLOSED\" email=\"info@stylemixthemes.com\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1485437972924{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1485495781846{margin-bottom: 20px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"Recruiting inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472890677{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}\"][vc_column_text css=\".vc_custom_1521797144684{margin-bottom: 15px !important;}\"]<span style=\"line-height: 22px;\">For more information regarding current career opportunities, please contact:</span>[/vc_column_text][stm_contact style=\"style_2\" name=\"Amanda Seyfried\" image=\"452\" job=\"Recruiting Manager\" phone=\"+1 212 123 4505\" phone_two=\"+1 212 202 3335\" email=\"recruiting@stylemixthemes.com\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1485495786512{margin-bottom: 20px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"Press inquiries\" font_container=\"tag:h3|font_size:20px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1549472898787{margin-top: -7px !important;margin-bottom: -22px !important;border-top-width: 3px !important;padding-top: 0px !important;padding-bottom: 16px !important;border-top-style: solid !important;}\"][vc_column_text css=\".vc_custom_1485437186454{margin-bottom: 15px !important;}\"]<span style=\"line-height: 22px;\">If you are a member of the press and would like to speak with someone at Consulting, please contact:</span>[/vc_column_text][stm_contact style=\"style_2\" name=\"Donald Simpson\" image=\"451\" job=\"Senior Marketing Manager\" phone=\"+1 212 123 4040\" phone_two=\"+1 212 617 5050\" email=\"d.simpson@stylemixthemes.com\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column css=\".vc_custom_1549473160287{padding-top: 20px !important;padding-bottom: 40px !important;background-color: #f2f2f2 !important;}\" offset=\"vc_col-lg-4\" el_class=\"form_full-right_width\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][contact-form-7 id=\"1477\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1485437951034{margin-bottom: -60px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIzODIlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]', 'Contact five', '', 'publish', 'closed', 'closed', '', 'contact-five', '', '', '2017-02-09 14:13:33', '2017-02-09 14:13:33', '', 0, 'http://consult.loc/?page_id=1483', 0, 'page', '', 0),
(1501, 1, '2017-02-09 14:23:01', '2017-02-09 14:23:01', '<p>[vc_row full_width=\"stretch_row\" css=\".vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_column_text css=\".vc_custom_1549452275528{margin-bottom: 25px !important;}\" el_class=\"under_none\"]</p>\n<h6 style=\"font-weight: 400; line-height: 26px;\">ConsultingWP originated in 1985 with five principals dedicated to integrity and excellence in economic and financial consulting.</h6>\n<p>[/vc_column_text][vc_column_text]<span style=\"line-height: 22px;\">Through gaining experience in various economic periods, our team are able to identify the best opportunities whether we are in good times or bad times. Good times provide growth in our portfolio and bad times, despite the potential negative effects, can provide opportunities.</span>[/vc_column_text][vc_column_text]</p>\n<blockquote style=\"background-color: #ffffff;\"><p>We see ourselves as a forward looking group of passionate property professionals with the relevant experience to match.</p></blockquote>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Why choose us\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769868945{margin-bottom: 39px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485526502077{margin-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"16\" icon_color=\"custom\" icon_width=\"70\" title=\"Travel and Aviation<br />\nConsulting\" css=\".vc_custom_1540890523577{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Consultants ranked firms on a scale of one to 10, based on prestige, firm culture, work-life balance, compensation, and other factors.</span>[/stm_icon_box][stm_icon_box icon=\"fa fa-university\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Services<br />\nConsulting\" css=\".vc_custom_1540890529159{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a dynamic niche consulting firm that has been helping visionary financial services brands convey their true essence.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Business Services<br />\nConsulting\" css=\".vc_custom_1540890545257{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.</span>[/stm_icon_box][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Energy and Environment<br />\nConsulting\" css=\".vc_custom_1540890550249{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Engage with consumers and inspire the media — we ensure brands are seen and heard in all the right places.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Consumer Products<br />\nConsulting\" css=\".vc_custom_1540890555702{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a company that offers design and build services for you from initial sketches to the final construction.</span>[/stm_icon_box][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport<br />\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1555484305136{background-color: #f2f2f2 !important;}\" el_class=\"about-bg-right\"][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1485524615651{margin-bottom: 22px !important;}\"]<span style=\"line-height: 22px;\">In 1990, ConsultingWP combined with Inception Analysis, Incorporated to strengthen its expertise in energy matters and opened its first office in Cupertino. Since then, the company has expanded throughout the United States and Europe to more than 300 people.</span>[/vc_column_text][vc_column_text css=\".vc_custom_1485525238864{margin-bottom: 23px !important;}\"]<span style=\"line-height: 22px;\">We know our clients’ brands inside and out to create bespoke campaigns that bring the brand story to life, engage with consumers and inspire the media.</span>[/vc_column_text][vc_row_inner css=\".vc_custom_1485525262482{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<ul>\n<li style=\"line-height: 22px; font-size: 13px;\">Work fewer hours &amp; make money</li>\n<li style=\"line-height: 22px; font-size: 13px;\">Phenomenal success in our target</li>\n<li style=\"line-height: 22px; font-size: 13px;\">Retain, high-paying customers</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<ul style=\"line-height: 22px;\">\n<li style=\"line-height: 22px; font-size: 13px;\">You’ll get more done in less time</li>\n<li style=\"line-height: 22px; font-size: 13px;\">Leadership skills to manage team</li>\n<li style=\"line-height: 22px; font-size: 13px;\">Generating millions of dollars</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"54\" xs_spacing=\"54\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"about_full-right_width\"][vc_custom_heading text=\"Our experience\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769880450{margin-bottom: 43px !important;}\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Financial%20Services%22%2C%22value%22%3A%2287%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Business%20Services%22%2C%22value%22%3A%2275%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Consumer%20Products%22%2C%22value%22%3A%2263%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Energy%20and%20Environment%22%2C%22value%22%3A%2250%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%5D\" bgcolor=\"custom\" units=\"%\" css=\".vc_custom_1549443111979{padding-right: 20px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485599609272{margin-bottom: 35px !important;}\"][vc_column][vc_custom_heading text=\"Our team\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}\"][stm_staff_list style=\"grid\" grid_view=\"short\" per_row=\"4\" count=\"8\" link=\"url:http%3A%2F%2Fconsulting.stylemixthemes.com/demo%2Fmilan%2Fcompany-overview%2Four-team-list%2F|title:Join%20our%20team|target:%20_blank|\" link_text=\"Discover our job positions\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"180x96\" items_mobile=\"2\" images=\"5182,5177,5178,5179,5180,5181\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'About Layout 2', '', 'publish', 'closed', 'closed', '', 'about-layout-2', '', '', '2017-02-09 14:23:01', '2017-02-09 14:23:01', '', 0, 'http://consult.loc/?page_id=1501', 0, 'page', '', 0),
(1503, 1, '2017-02-09 14:30:39', '2017-02-09 14:30:39', '<p>[vc_row css=\".vc_custom_1555482835344{margin-right: 0px !important;margin-bottom: 50px !important;margin-left: 0px !important;}\"][vc_column css=\".vc_custom_1559539497588{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1485768753869{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" el_class=\"mobile_no_paddings\"][vc_column_inner el_class=\"mobile_no_paddings\" css=\".vc_custom_1486650450074{padding-top: 52px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 40px !important;background-color: rgba(9,8,33,0.9) !important;*background-color: rgb(9,8,33) !important;}\" offset=\"vc_col-lg-5\"][stm_quote box_color=\"custom\" quote_text=\"\" image=\"5588\" img_size=\"48x48\" author_name=\"Simon Northampton\" author_status=\"Managing Director, New York Office\" quote=\"“We have the capabilities and experience to deliver the answers you need to move forward.”\" box_color_custom=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"7/12\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1485767489734{padding-top: 57px !important;padding-bottom: 59px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3 vc_col-xs-12\"][stm_stats_counter stat_counter_style=\"style_2\" counter_value=\"321\" description=\"cases<br />\ncompleted\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3 vc_col-xs-12\"][stm_stats_counter stat_counter_style=\"style_2\" counter_value=\"400\" description=\"consultants<br />\nworldwide\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3 vc_col-xs-12\"][stm_stats_counter stat_counter_style=\"style_2\" counter_value=\"125\" description=\"awards<br />\nwinning\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3 vc_col-xs-12\"][stm_stats_counter stat_counter_style=\"style_2\" counter_value=\"100\" counter_value_suf=\"%\" description=\"satisfied<br />\nclients\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485759536261{margin-bottom: 0px !important;padding-top: 56px !important;background-color: #f2f2f2 !important;}\"][vc_column][vc_custom_heading text=\"Our core values\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544770204739{margin-bottom: 39px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485759472603{padding-bottom: 35px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-4\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-nokia\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity Properties\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638631834{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">The firm\'s 4,000 professionals help clients optimize their businesses, improve their operations and risk profile.</span>[/stm_icon_box][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-security\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Privacy and Safety\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638641514{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">Our capabilities and intellectual capital are enhanced by our deep industry expertise and hands-on, collaborative approach.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-binoculars\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Long-Sightedness\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638655769{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">ConsultingWP\'s thought leadership is evident in our agenda-setting books, white papers, research reports in the business press.</span>[/stm_icon_box][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-badge\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality Services\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638648915{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">Our professionals see what others don\'t, challenge conventional thinking, and consistently deliver innovative solutions.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-mans\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Challenging Staff\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638664857{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">Institute connects the firm with prominent leaders of the academic community for joint research on frontier issues.</span>[/stm_icon_box][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-idea\" style=\"icon_left\" icon_size=\"30\" icon_color=\"custom\" icon_width=\"70\" title=\"Innovation Solutions\" title_font_size=\"22\" title_line_height=\"46\" icon_color_custom=\"#ffffff\" css=\".vc_custom_1533638676483{margin-bottom: 24px !important;}\"]<span style=\"line-height: 20px; margin-top: -10px;\">We work side by side with senior executives to accelerate execution through a blend of analytical and management approaches.</span>[/stm_icon_box][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving-fade\" parallax_image=\"1570\" css=\".vc_custom_1555504078827{margin-bottom: 36px !important;padding-top: 67px !important;padding-bottom: 70px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2019/04/consulting_about-our-partners3-1.jpg?id=5267) !important;}\" el_class=\"base_bg_color\"][vc_column][stm_image_carousel grayscale=\"yes\" h_centered=\"yes\" img_size=\"full\" items=\"5\" items_small_desktop=\"4\" items_tablet=\"3\" images=\"673,672,671,670,669,668\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485757244346{margin-bottom: 90px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-12\"][vc_custom_heading text=\"Our clients\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544770213979{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1549457479529{margin-bottom: 25px !important;}\" el_class=\"under_none\"]</p>\n<h6 style=\"line-height: 26px;\">We are driven to do the best job possible. We pride ourselves on cultivating lasting client relationships built on trust and mutual respect.</h6>\n<p>[/vc_column_text][vc_column_text]<span style=\"line-height: 22px;\">Our clients include many of the world\'s best-performing and most admired companies, law firms, and industry organizations as well as United States and international regulatory and government agencies.</span>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1485759922503{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-2 vc_col-md-4 vc_col-xs-12\"][stm_spacing lg_spacing=\"50px\"][vc_pie value=\"80\" label_value=\"80\" color=\"custom\" title=\"of AM LAW 100 Firms\" units=\"%\" css=\".vc_custom_1559384100183{padding-top: 45px !important;}\" custom_color=\"#fde428\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1485759931037{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-2 vc_col-md-4 vc_col-xs-12\"][stm_spacing lg_spacing=\"50px\"][vc_pie label_value=\"50\" color=\"custom\" title=\"of Fortune 100 Companies\" units=\"%\" custom_color=\"#fde428\" css=\".vc_custom_1559384110831{padding-top: 45px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1485759938903{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-2 vc_col-md-4 vc_col-xs-12\"][stm_spacing lg_spacing=\"50px\"][vc_pie value=\"25\" label_value=\"25\" color=\"custom\" title=\"of Fortune 100 Companies\" units=\"%\" custom_color=\"#fde428\" css=\".vc_custom_1559384126967{padding-top: 45px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485757408683{margin-bottom: 77px !important;}\"][vc_column offset=\"vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390647978{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'About Layout 3', '', 'publish', 'closed', 'closed', '', 'about-layout-3', '', '', '2017-02-09 14:30:39', '2017-02-09 14:30:39', '', 0, 'http://consult.loc/?page_id=1503', 0, 'page', '', 0),
(1508, 1, '2017-02-10 05:47:57', '2017-02-10 05:47:57', '[vc_row css=\".vc_custom_1484808671292{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1471\"][/vc_column][vc_column offset=\"vc_col-lg-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" css=\".vc_custom_1544778610002{margin-top: -25px !important;margin-bottom: 40px !important;padding-top: 0px !important;}\"][vc_column_text][booked-calendar][/vc_column_text][vc_custom_heading text=\"Meet our staff\" use_theme_fonts=\"yes\" css=\".vc_custom_1544778616129{margin-bottom: 35px !important;}\"][stm_staff_list style=\"carousel\" count=\"\" slides_to_show=\"3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1484890330045{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545394863537{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Make an appointment', '', 'publish', 'closed', 'closed', '', 'make-an-appointment', '', '', '2017-02-10 05:47:57', '2017-02-10 05:47:57', '', 0, 'http://consult.loc/?page_id=1508', 0, 'page', '', 0),
(1514, 1, '2017-02-07 12:39:34', '2017-02-07 12:39:34', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][vc_row_inner css=\".vc_custom_1484550790519{margin-bottom: 16px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"event program\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544779203622{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text]\n<ul>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>5:30 PM — 6:00 PM</strong>\nProfessional, able to interact with vendors/clients</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:00 PM — 6:30 PM</strong>\nAbility to take a big picture idea and run with it</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:30 PM — 7:00 PM</strong>\nWorks well both independently and as part of a team</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:00 PM — 7:30 PM</strong>\nKnowledge of SPSS or other analytical software</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:30 PM — 8:30 PM</strong>\nPersonal accountability and strong work ethic</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"our speakers\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" css=\".vc_custom_1544779208684{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642080289{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"wp-image-2881 size-thumbnail alignleft\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff2-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Berg Devien</strong></span>\n<span style=\"font-size: 14px;\"> Candidates can look forward to regular client contact, a role in business development.</span>[/vc_column_text][vc_empty_space height=\"14px\" css=\".vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642108386{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2882 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff3-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Priscilla Sorvino</strong></span>\n<span style=\"font-size: 14px;\"> Proposal writing/methodology creation, and a leading role in managing a project to finish.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'That Will make You more Productive', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'that-will-make-you-more-productive', '', '', '2017-02-07 12:39:34', '2017-02-07 12:39:34', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1104', 0, 'stm_event', '', 0),
(1515, 1, '2017-02-07 12:41:14', '2017-02-07 12:41:14', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'If You do all those things Effectively, You can’t miss', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'if-you-do-all-those-things-effectively-you-cant-miss', '', '', '2017-02-07 12:41:14', '2017-02-07 12:41:14', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1105', 0, 'stm_event', '', 0),
(1516, 1, '2017-02-07 12:43:31', '2017-02-07 12:43:31', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][vc_row_inner css=\".vc_custom_1484550790519{margin-bottom: 16px !important;}\"][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"event program\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"border_base_color\" css=\".vc_custom_1544779247166{margin-bottom: 7px !important;border-top-width: 3px !important;border-top-style: solid !important;}\"][vc_column_text]\n<ul>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>5:30 PM — 6:00 PM</strong>\nProfessional, able to interact with vendors/clients</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:00 PM — 6:30 PM</strong>\nAbility to take a big picture idea and run with it</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>6:30 PM — 7:00 PM</strong>\nWorks well both independently and as part of a team</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:00 PM — 7:30 PM</strong>\nKnowledge of SPSS or other analytical software</li>\n 	<li style=\"font-size: 14px; line-height: 20px; margin-bottom: 20px;\"><strong>7:30 PM — 8:30 PM</strong>\nPersonal accountability and strong work ethic</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading stripe_pos=\"hide\" text=\"our speakers\" font_container=\"tag:h4|font_size:18px|text_align:left|color:%23222222|line_height:45px\" use_theme_fonts=\"yes\" css=\".vc_custom_1544779243737{margin-top: 0px !important;padding-bottom: 17px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642354893{margin-bottom: 0px !important;padding-right: 40px !important;padding-bottom: 14px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2880 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff1-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Berg Devien</strong></span>\n<span style=\"font-size: 14px;\"> Candidates can look forward to regular client contact, a role in business development.</span>[/vc_column_text][vc_empty_space height=\"14px\" css=\".vc_custom_1484644818786{padding-top: 1px !important;background-color: #f2f2f2 !important;}\"][vc_column_text css=\".vc_custom_1533642370870{padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #f2f2f2 !important;}\"]<span style=\"font-size: 14px;\"><strong><img class=\"alignleft wp-image-2885 size-thumbnail\" src=\"http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2016/01/staff6-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Priscilla Sorvino</strong></span>\n<span style=\"font-size: 14px;\"> Proposal writing/methodology creation, and a leading role in managing a project to finish.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'Here’s what I Found: 13 Habits of Millionaires', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'heres-what-i-found-13-habits-of-millionaires', '', '', '2017-02-07 12:43:31', '2017-02-07 12:43:31', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1106', 0, 'stm_event', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1517, 1, '2017-02-07 12:45:50', '2017-02-07 12:45:50', '[vc_row][vc_column offset=\"vc_col-lg-9\"][stm_events_information css=\".vc_custom_1484549823001{margin-top: -18px !important;}\"][stm_events_map css=\".vc_custom_1483967473543{margin-bottom: 20px !important;}\"][vc_column_text]\n<h3>event description</h3>\nMany businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset.\n\nWhat is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?” Its own people.[/vc_column_text][stm_event_lesson][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20A%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 1\" datepicker=\"2018-04-20\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20B%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 2\" datepicker=\"2018-04-21\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2208%3A30%22%2C%22timepicker_end%22%3A%2210%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%2C%7B%22timepicker_start%22%3A%2210%3A30%22%2C%22timepicker_end%22%3A%2212%3A30%22%2C%22location%22%3A%22Room%20C%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%5D\" stm_event_lesson_title=\"Day 3\" datepicker=\"2018-04-22\"][stm_event_lessons heading=\"%5B%7B%22timepicker_start%22%3A%2209%3A00%22%2C%22timepicker_end%22%3A%2212%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22ButterMochi%20for%20the%20Soul%22%2C%22description%22%3A%22Using%20a%20mean%20absolute%20percentage%20analysis%20(MAPE)%2C%20the%20teams%20defined%20appropriate%20levels%20for%20raw%20materials%20and%20finished%20products%20by%20mapping%20actual%20versus%20forecasted%20sales%20on%20the%20most%20important%20SKUs.%22%2C%22lesson_speakers%22%3A%22461%2C%20449%2C%20460%22%7D%2C%7B%22timepicker_start%22%3A%2213%3A00%22%2C%22timepicker_end%22%3A%2217%3A00%22%2C%22location%22%3A%22Room%20D%22%2C%22title%22%3A%22The%20Campaign%20for%20Daylight%20Saving%20Time%22%2C%22description%22%3A%22The%20teams%20focused%20their%20efforts%20on%20a%20few%20of%20the%20highest-value%20S%26OP%20levers%20in%20order%20to%20review%20the%20current%20planning%20process%2C%20identify%20gaps%20in%20the%20planning%20infrastructure%20and%20analytically%20understand%20demand%20and%20supply%20variability.%22%2C%22lesson_speakers%22%3A%22448%2C%20449%2C%20459%22%7D%5D\" stm_event_lesson_title=\"Day 4\" datepicker=\"2018-04-23\"][/stm_event_lesson][stm_events_form][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1470\"][/vc_column][/vc_row]', 'I Spent $30,000 Testing Different Blog Designs', 'Testing Different Event', 'publish', 'closed', 'closed', '', 'i-spent-30000-testing-different-blog-designs', '', '', '2017-02-07 12:45:50', '2017-02-07 12:45:50', '', 0, 'http://consult.loc/?post_type=stm_event&amp;p=1108', 0, 'stm_event', '', 0),
(1519, 1, '2017-02-07 14:22:37', '2017-02-07 14:22:37', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Construction of a new plant\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777286768{margin-top: -10px !important;margin-bottom: 26px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486036970613{margin-bottom: 42px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\" css=\".vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486039795308{margin-bottom: 34px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039760844{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039789281{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1486037845810{margin-bottom: 40px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][vc_column][vc_raw_html]JTNDaWZyYW1lJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIxNjYlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUyMGZyYW1lYm9yZGVyJTNEJTIybm8lMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRncuc291bmRjbG91ZC5jb20lMkZwbGF5ZXIlMkYlM0Z1cmwlM0RodHRwcyUyNTNBJTJGJTJGYXBpLnNvdW5kY2xvdWQuY29tJTJGdHJhY2tzJTJGMTk3NjQ4NDAyJTI2YW1wJTNCYXV0b19wbGF5JTNEZmFsc2UlMjZhbXAlM0JoaWRlX3JlbGF0ZWQlM0RmYWxzZSUyNmFtcCUzQnNob3dfY29tbWVudHMlM0R0cnVlJTI2YW1wJTNCc2hvd191c2VyJTNEdHJ1ZSUyNmFtcCUzQnNob3dfcmVwb3N0cyUzRGZhbHNlJTI2YW1wJTNCJTIyJTNFJTNDJTJGaWZyYW1lJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038348171{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1486718310746{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23222222|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1559539797533{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Construction of a new plant', '', 'publish', 'closed', 'closed', '', 'construction-of-a-new-plant', '', '', '2017-02-07 14:22:37', '2017-02-07 14:22:37', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1122', 0, 'stm_portfolio', '', 0),
(1520, 1, '2017-02-07 14:23:30', '2017-02-07 14:23:30', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Construction of railways\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777272734{margin-top: -10px !important;margin-bottom: 26px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486036970613{margin-bottom: 42px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\" css=\".vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486039795308{margin-bottom: 34px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039760844{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039789281{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1486037845810{margin-bottom: 40px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486387511773{margin-bottom: 40px !important;}\"][vc_column][vc_raw_html]JTNDaWZyYW1lJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIxNjYlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUyMGZyYW1lYm9yZGVyJTNEJTIybm8lMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRncuc291bmRjbG91ZC5jb20lMkZwbGF5ZXIlMkYlM0Z1cmwlM0RodHRwcyUyNTNBJTJGJTJGYXBpLnNvdW5kY2xvdWQuY29tJTJGdHJhY2tzJTJGMTk3NjQ4NDAyJTI2YW1wJTNCYXV0b19wbGF5JTNEZmFsc2UlMjZhbXAlM0JoaWRlX3JlbGF0ZWQlM0RmYWxzZSUyNmFtcCUzQnNob3dfY29tbWVudHMlM0R0cnVlJTI2YW1wJTNCc2hvd191c2VyJTNEdHJ1ZSUyNmFtcCUzQnNob3dfcmVwb3N0cyUzRGZhbHNlJTI2YW1wJTNCJTIyJTNFJTNDJTJGaWZyYW1lJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038348171{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_3\" show_button=\"yes\" css=\".vc_custom_1541415065131{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1486718015053{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1559539841004{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Construction of new buildings', '', 'publish', 'closed', 'closed', '', 'construction-of-new-buildings', '', '', '2017-02-07 14:23:30', '2017-02-07 14:23:30', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1123', 0, 'stm_portfolio', '', 0),
(1521, 1, '2017-02-07 14:24:20', '2017-02-07 14:24:20', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Negotiations with partners\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777258366{margin-top: -10px !important;margin-bottom: 26px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486036970613{margin-bottom: 42px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\" css=\".vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486039795308{margin-bottom: 34px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039760844{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039789281{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1486037845810{margin-bottom: 40px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038117612{margin-bottom: 40px !important;border-bottom-width: 1px !important;padding-bottom: 40px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][vc_column][vc_raw_html]JTNDaWZyYW1lJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIxNjYlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUyMGZyYW1lYm9yZGVyJTNEJTIybm8lMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRncuc291bmRjbG91ZC5jb20lMkZwbGF5ZXIlMkYlM0Z1cmwlM0RodHRwcyUyNTNBJTJGJTJGYXBpLnNvdW5kY2xvdWQuY29tJTJGdHJhY2tzJTJGMTk3NjQ4NDAyJTI2YW1wJTNCYXV0b19wbGF5JTNEZmFsc2UlMjZhbXAlM0JoaWRlX3JlbGF0ZWQlM0RmYWxzZSUyNmFtcCUzQnNob3dfY29tbWVudHMlM0R0cnVlJTI2YW1wJTNCc2hvd191c2VyJTNEdHJ1ZSUyNmFtcCUzQnNob3dfcmVwb3N0cyUzRGZhbHNlJTI2YW1wJTNCJTIyJTNFJTNDJTJGaWZyYW1lJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038348171{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_3\" show_button=\"yes\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1486718151466{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1559539884958{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Negotiations with partners', '', 'publish', 'closed', 'closed', '', 'negotiations-with-partners', '', '', '2017-02-07 14:24:20', '2017-02-07 14:24:20', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1124', 0, 'stm_portfolio', '', 0),
(1522, 1, '2017-02-07 14:25:10', '2017-02-07 14:25:10', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Construction of railways\" font_container=\"tag:h1|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777235355{margin-top: -10px !important;margin-bottom: 26px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486036970613{margin-bottom: 42px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\" css=\".vc_custom_1486036614566{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 28px !important;border-top-color: #dddddd !important;border-top-style: solid !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486039795308{margin-bottom: 34px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039760844{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1486039789281{margin-bottom: 20px !important;}\"]\n<p style=\"line-height: 22px;\">HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1486037845810{margin-bottom: 40px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1580x768\" onclick=\"\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486387511773{margin-bottom: 40px !important;}\"][vc_column][vc_raw_html]JTNDaWZyYW1lJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIxNjYlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUyMGZyYW1lYm9yZGVyJTNEJTIybm8lMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRncuc291bmRjbG91ZC5jb20lMkZwbGF5ZXIlMkYlM0Z1cmwlM0RodHRwcyUyNTNBJTJGJTJGYXBpLnNvdW5kY2xvdWQuY29tJTJGdHJhY2tzJTJGMTk3NjQ4NDAyJTI2YW1wJTNCYXV0b19wbGF5JTNEZmFsc2UlMjZhbXAlM0JoaWRlX3JlbGF0ZWQlM0RmYWxzZSUyNmFtcCUzQnNob3dfY29tbWVudHMlM0R0cnVlJTI2YW1wJTNCc2hvd191c2VyJTNEdHJ1ZSUyNmFtcCUzQnNob3dfcmVwb3N0cyUzRGZhbHNlJTI2YW1wJTNCJTIyJTNFJTNDJTJGaWZyYW1lJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row css=\".vc_custom_1486038348171{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_3\" show_button=\"yes\" css=\".vc_custom_1541415022139{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1486718015053{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545392654198{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Construction of railways', '', 'publish', 'closed', 'closed', '', 'construction-of-railways', '', '', '2017-02-07 14:25:10', '2017-02-07 14:25:10', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1125', 0, 'stm_portfolio', '', 0),
(1523, 1, '2017-02-07 14:26:12', '2017-02-07 14:26:12', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Omnichannel strategy boosts fashion company\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777219494{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}\"][vc_column_text css=\".vc_custom_1486108467289{margin-bottom: 32px !important;}\"]\n<p style=\"line-height: 22px; margin-bottom: 22px; text-align: center;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1486107947125{margin-bottom: 30px !important;}\"][vc_column][stm_image_carousel h_centered=\"yes\" img_size=\"full\" style=\"style_2\" loop=\"yes\" nav=\"yes\" items=\"1\" items_small_desktop=\"1\" items_tablet=\"1\" images=\"5588\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486107989655{margin-bottom: 30px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"Wilson &amp; Sons Co.\" portfolio_date=\"December 20, 2016\" portfolio_role=\"Art Direction, UI/UX, Web Design\" style=\"style_2\" posts_per_row=\"4\" show_title_icons=\"yes\" facebook=\"#\" twitter=\"#\" instagram=\"#\" google_plus=\"#\" youtube=\"#\" css=\".vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486117225957{padding-bottom: 47px !important;}\"][vc_column][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" size=\"380\" height_size=\"650\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486108522112{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_2\" show_button=\"yes\" css=\".vc_custom_1541415005645{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545392797180{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Omnichannel strategy boosts fashion company', '', 'publish', 'closed', 'closed', '', 'omnichannel-strategy-boosts-fashion-company', '', '', '2017-02-07 14:26:12', '2017-02-07 14:26:12', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1126', 0, 'stm_portfolio', '', 0),
(1524, 1, '2017-02-07 14:27:02', '2017-02-07 14:27:02', '[vc_row][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Focus on core delivers growth for retailer\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777203711{margin-top: 50px !important;margin-bottom: 36px !important;padding-top: 18px !important;}\"][vc_column_text css=\".vc_custom_1486108467289{margin-bottom: 32px !important;}\"]\n<p style=\"line-height: 22px; margin-bottom: 22px; text-align: center;\">Optimizing this above-the-fold area to make the most of the screen real estate had the biggest impact of all the things I tested. Switching my opt-in box from the sidebar on the right to the header area just below my logo and navigation was a HUGE bump in visitor-to-leads conversion. Just moving our same opt-in offer from the sidebar to the header I went from 2 percent of visitors becoming subscribers to 5 percent.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1486107947125{margin-bottom: 30px !important;}\"][vc_column][stm_image_carousel h_centered=\"yes\" img_size=\"full\" style=\"style_2\" loop=\"yes\" nav=\"yes\" items=\"1\" items_small_desktop=\"1\" items_tablet=\"1\" images=\"5588\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486107989655{margin-bottom: 30px !important;}\"][vc_column][stm_portfolio_information portfolio_client=\"Wilson &amp; Sons Co.\" portfolio_date=\"December 20, 2016\" portfolio_role=\"Art Direction, UI/UX, Web Design\" style=\"style_2\" posts_per_row=\"4\" show_title_icons=\"yes\" facebook=\"#\" twitter=\"#\" instagram=\"#\" google_plus=\"#\" youtube=\"#\" css=\".vc_custom_1486102384765{padding-top: 29px !important;padding-left: 30px !important;background-color: #f2f2f2 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486117225957{padding-bottom: 47px !important;}\"][vc_column][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" size=\"380\" height_size=\"650\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1486108522112{margin-bottom: 40px !important;}\"][vc_column][stm_portfolio_pagination style=\"style_2\" show_button=\"yes\" css=\".vc_custom_1541414980036{border-top-width: 1px !important;padding-top: 40px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545392641632{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Focus on core delivers growth for retailer', '', 'publish', 'closed', 'closed', '', 'focus-on-core-delivers-growth-for-retailer', '', '', '2017-02-07 14:27:02', '2017-02-07 14:27:02', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1127', 0, 'stm_portfolio', '', 0),
(1525, 1, '2017-02-07 14:27:58', '2017-02-07 14:27:58', '<p>[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1486031020045{margin-bottom: 30px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5291,5588\" img_size=\"1920x780\" onclick=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1486031104993{margin-bottom: 54px !important;}\"][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Beff Baffer Construction\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777175943{margin-bottom: 36px !important;padding-top: 18px !important;}\"][vc_row_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"10/12\"][vc_column_text]</p>\n<p style=\"line-height: 22px; margin-bottom: 22px;\">Consulting WP is a global strategy consulting firm with offices across Europe, the Americas and Asia-Pacific. We counsel our clients on their key strategic issues, leveraging our deep industry expertise and using analytical rigor to help them make informed decisions more quickly and solve their toughest and most critical business problems.</p>\n<p style=\"line-height: 22px;\">Founded in London in 1983 by three partners, we now employ more than 1,000 professionals worldwide. We advise and support global companies that are leaders in their industries.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/2\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"full\" onclick=\"\" css=\".vc_custom_1559539692677{margin-bottom: 30px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"full\" onclick=\"\" css=\".vc_custom_1559539707765{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1920x780\" onclick=\"\" css=\".vc_custom_1559539715696{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" alignment=\"center\" portfolio_website=\"www.squaresparc.com\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\"][vc_column][stm_portfolio_pagination show_button=\"yes\" link=\"url:%2Fportfolio-grid%2F|title:Portfolio||\"][/vc_column][/vc_row]</p>\n', 'Beff Baffer Construction', '', 'publish', 'closed', 'closed', '', 'beff-baffer-construction', '', '', '2017-02-07 14:27:58', '2017-02-07 14:27:58', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1128', 0, 'stm_portfolio', '', 0),
(1526, 1, '2017-02-07 14:28:46', '2017-02-07 14:28:46', '[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1486031020045{margin-bottom: 30px !important;}\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1920x780\" onclick=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1486031104993{margin-bottom: 54px !important;}\"][vc_column][vc_custom_heading stripe_pos=\"hide\" text=\"Volker Stevin Construction\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1544777187996{margin-bottom: 36px !important;padding-top: 18px !important;}\"][vc_row_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"10/12\"][vc_column_text]\n<p style=\"line-height: 22px; margin-bottom: 22px;\">Consulting WP is a global strategy consulting firm with offices across Europe, the Americas and Asia-Pacific. We counsel our clients on their key strategic issues, leveraging our deep industry expertise and using analytical rigor to help them make informed decisions more quickly and solve their toughest and most critical business problems.</p>\n<p style=\"line-height: 22px;\">Founded in London in 1983 by three partners, we now employ more than 1,000 professionals worldwide. We advise and support global companies that are leaders in their industries.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/2\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"full\" onclick=\"\" css=\".vc_custom_1559540015819{margin-bottom: 30px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"full\" onclick=\"\" css=\".vc_custom_1559540023635{margin-bottom: 30px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column][vc_gallery type=\"image_full\" images=\"5588\" img_size=\"1920x780\" onclick=\"\" css=\".vc_custom_1559540031243{margin-bottom: 36px !important;border-bottom-width: 1px !important;padding-bottom: 78px !important;border-bottom-color: #dddddd !important;border-bottom-style: solid !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\"][vc_column][stm_portfolio_information portfolio_client=\"SquareSparc Ltd.\" portfolio_date=\"December 11, 2016\" portfolio_services=\"Web Design, Web Development\" posts_per_row=\"4\" alignment=\"center\" portfolio_website=\"www.squaresparc.com\" link=\"url:http%3A%2F%2Fwww.squaresparc.com|title:www.squaresparc.com|target:%20_blank|\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1486012627482{margin-bottom: -60px !important;border-top-width: 1px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\"][vc_column][stm_portfolio_pagination][/vc_column][/vc_row]', 'Volker Stevin Construction', '', 'publish', 'closed', 'closed', '', 'volker-stevin-construction', '', '', '2017-02-07 14:28:46', '2017-02-07 14:28:46', '', 0, 'http://consult.loc/?post_type=stm_portfolio&amp;p=1129', 0, 'stm_portfolio', '', 0),
(1529, 1, '2017-02-09 14:04:48', '2017-02-09 14:04:48', '[vc_row css=\".vc_custom_1485423383193{margin-bottom: 20px !important;}\"][vc_column css=\".vc_custom_1485424286916{margin-bottom: 30px !important;}\" offset=\"vc_col-lg-4\"][vc_column_text el_class=\"border_base_color\" css=\".vc_custom_1521796577029{margin-bottom: 28px !important;border-bottom-width: 3px !important;padding-bottom: 32px !important;border-bottom-color: #002e5b !important;border-bottom-style: solid !important;}\"]<span style=\"color: #444444; font-size: 16px; letter-spacing: -0.4px;\">Please let us know if you have a question, want to leave a comment, or would like further information about Consulting WP.</span>[/vc_column_text][stm_contacts_widget style=\"style_4\" email=\"brandon@consulting.com\" title=\"Contact details\" address=\"1010 Avenue of the Moon\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column][vc_column css=\".vc_custom_1485424295749{margin-bottom: 30px !important;}\" offset=\"vc_col-lg-8\"][contact-form-7 id=\"1474\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1485423323752{margin-bottom: -60px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjIxMDAlMjUlMjIlMjBoZWlnaHQlM0QlMjIzODJweCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRSUzQyUyRmlmcmFtZSUzRQ==\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row]', 'Contact two', '', 'publish', 'closed', 'closed', '', 'contact-two', '', '', '2017-02-09 14:04:48', '2017-02-09 14:04:48', '', 0, 'http://consult.loc/?page_id=1476', 0, 'page', '', 0),
(1530, 1, '2017-02-10 07:18:52', '2017-02-10 07:18:52', '[vc_row css=\".vc_custom_1483614678807{margin-bottom: 50px !important;}\"][vc_column][stm_events events_filter=\"all\" posts_per_page=\"9\" posts_per_row=\"3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1484889309914{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545394831527{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Events Grid', '', 'publish', 'closed', 'closed', '', 'events-grid', '', '', '2017-02-10 07:18:52', '2017-02-10 07:18:52', '', 0, 'http://consult.loc/?page_id=1519', 0, 'page', '', 0),
(1531, 1, '2017-02-10 07:34:03', '2017-02-10 07:34:03', '[vc_row css=\".vc_custom_1483689434468{margin-bottom: 50px !important;}\"][vc_column offset=\"vc_col-lg-9\"][vc_custom_heading text=\"Events classic\" google_fonts=\"font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1549471327673{margin-top: -18px !important;margin-bottom: 36px !important;}\"][stm_events events_filter=\"all\" event_style=\"classic\" posts_per_page=\"3\" pagination_enable=\"true\"][/vc_column][vc_column offset=\"vc_col-lg-3\"][stm_sidebar sidebar=\"1469\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1484889414242{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545394843949{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Events', '', 'publish', 'closed', 'closed', '', 'events-classic', '', '', '2017-02-10 07:34:03', '2017-02-10 07:34:03', '', 0, 'http://consult.loc/?page_id=1521', 0, 'page', '', 0),
(1532, 1, '2017-02-10 07:37:15', '2017-02-10 07:37:15', '[vc_row css=\".vc_custom_1485926573332{margin-bottom: 100px !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"3/4\"][vc_custom_heading source=\"post_title\" google_fonts=\"font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1484031782880{margin-top: -29px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_wp_search][/vc_column_inner][/vc_row_inner][stm_events events_filter=\"all\" event_style=\"modern\" posts_per_page=\"6\" load_more_enable=\"true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1484890377722{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\"][/vc_cta][/vc_column][/vc_row]', 'Events Modern', '', 'publish', 'closed', 'closed', '', 'events-modern', '', '', '2017-02-10 07:37:15', '2017-02-10 07:37:15', '', 0, 'http://consult.loc/?page_id=1525', 0, 'page', '', 0),
(1535, 1, '2017-02-10 09:26:18', '2017-02-10 09:26:18', '[vc_row css=\".vc_custom_1485854969371{margin-bottom: 110px !important;}\"][vc_column][stm_portfolio posts_per_page=\"7\" load_more_enable=\"true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1484889309914{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545392573012{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Portfolio', '', 'publish', 'closed', 'closed', '', 'portfolio-grid', '', '', '2017-02-10 09:26:18', '2017-02-10 09:26:18', '', 0, 'http://consult.loc/?page_id=1535', 0, 'page', '', 0),
(1615, 1, '2015-02-15 15:17:40', '2015-02-15 15:17:40', '[vc_row css=\".vc_custom_1459506735567{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading stripe_pos=\"hide\" text=\"Chivelet Honsou\" use_theme_fonts=\"yes\" subtitle=\"Financial Advisor\"][vc_row_inner css=\".vc_custom_1453120532096{margin-bottom: 37px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image source=\"featured_image\" img_size=\"560x364\" css=\".vc_custom_1453120292205{padding-right: 25px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading stripe_pos=\"hide\" text=\"areas of expertise\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771932341{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">Business transformation</span></li>\n 	<li><span style=\"color: #002e5b;\">Restructuring and turnaround</span></li>\n 	<li><span style=\"color: #002e5b;\">Integration</span></li>\n 	<li><span style=\"color: #002e5b;\">Growth strategy</span></li>\n 	<li><span style=\"color: #002e5b;\">M&amp;A transaction support</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading stripe_pos=\"hide\" text=\"education\" font_container=\"tag:h6|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771936228{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<ul class=\"small_margin\" style=\"font-size: 13px; line-height: 18px;\">\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n 	<li><span style=\"color: #002e5b;\">BS, engineering, Technical University of Denmark</span></li>\n 	<li><span style=\"color: #002e5b;\">MBA, Rotterdam School of Management, Erasmus University</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]With over 20 years of experience in entrepreneurship, management, business planning, financial analysis, software engineering, operations, and decision analysis, Brandon has the breadth and depth of experience needed to quickly understand entrepreneurs\' businesses and craft the most suitable solutions.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP comes up with results that are actually implementable. That is their strength compared to other consulting companies.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1453182502119{margin-bottom: 25px !important;}\"]Before founding Consulting WP in early 2001, Brandon started two Internet companies in Silicon Valley. Previously, Brandon held various management positions in New York at Simon Brothers, most recently as Vice President in Goldhill Group, focusing on new business development and risk management. He has also worked as a senior financial risk management consultant to the financial services industry; software engineer; advertising sales manager for the popular Caribbean travel guide series; general manager of an advertising and graphic design agency; and engineering intern at the Best Health Coach.[/vc_column_text][vc_custom_heading stripe_pos=\"hide\" text=\"publications\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1544771945409{margin-bottom: 0px !important;}\" el_class=\"no_stripe\"][stm_news loop=\"size:2|post_type:post\" posts_per_row=\"2\" css=\".vc_custom_1534245857256{margin-bottom: 27px !important;}\" img_size=\"500x500\"][stm_staff_bottom css=\".vc_custom_1453184789375{background: #ffffff url(http://consulting.stylemixthemes.com/demo/miami/wp-content/uploads/sites/36/2015/12/contact_us_block-1.jpg?id=493) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner css=\".vc_custom_1534307625284{margin-right: 0px !important;margin-left: 0px !important;padding-top: 23px !important;padding-right: 35px !important;padding-bottom: 20px !important;padding-left: 35px !important;background-color: #1e1c1b !important;}\"][vc_column_inner width=\"1/4\"][vc_custom_heading stripe_pos=\"hide\" text=\"feedback form\" font_container=\"tag:h4|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #ffffff;\">If you\'d like a free consultation, please start by completing the form:</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453194844614{padding-top: 27px !important;}\"][contact-form-7 id=\"599\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545631785915{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Kim Su Hao', '', 'publish', 'closed', 'closed', '', 'kim-su-hao', '', '', '2015-02-15 15:17:40', '2015-02-15 15:17:40', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=stm_staff&amp;p=1615', 0, 'stm_staff', '', 0),
(1632, 1, '2017-03-27 11:11:16', '2017-03-27 11:11:16', '', 'New request for event -  I Spent $30,000 Testing Different Blog Designs', '', 'publish', 'closed', 'closed', '', 'new-request-for-event-i-spent-30000-testing-different-blog-designs', '', '', '2017-03-27 11:11:16', '2017-03-27 11:11:16', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/event_member/new-request-for-event-i-spent-30000-testing-different-blog-designs/', 0, 'event_member', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1647, 1, '2017-05-12 09:26:08', '2017-05-12 09:26:08', '[vc_row][vc_column][stm_services_tabs][/vc_column][/vc_row]', 'Services with Tabs', '', 'publish', 'closed', 'closed', '', 'services-with-tabs', '', '', '2017-05-12 09:26:08', '2017-05-12 09:26:08', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?page_id=1647', 0, 'page', '', 0),
(1668, 1, '2017-07-24 08:32:01', '2017-07-24 08:32:01', '', 'New request for event -  Thought Processes and see what Happen', '', 'publish', 'closed', 'closed', '', 'new-request-for-event-thought-processes-and-see-what-happen', '', '', '2017-07-24 08:32:01', '2017-07-24 08:32:01', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/event_member/new-request-for-event-thought-processes-and-see-what-happen/', 0, 'event_member', '', 0),
(1670, 1, '2017-08-09 08:11:31', '2017-08-09 08:11:31', '', 'New request for event -  Apply them in Your Own Routines', '', 'publish', 'closed', 'closed', '', 'new-request-for-event-apply-them-in-your-own-routines', '', '', '2017-08-09 08:11:31', '2017-08-09 08:11:31', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/event_member/new-request-for-event-apply-them-in-your-own-routines/', 0, 'event_member', '', 0),
(2155, 1, '2019-09-09 12:23:02', '2019-09-09 12:23:02', '', 'Hotel BOOKING', '', 'publish', 'closed', 'closed', '', 'hotel-booking', '', '', '2019-09-09 12:23:02', '2019-09-09 12:23:02', '', 0, 'http://decode.loc/cost-calc/hotel-booking/', 0, 'cost-calc', '', 0),
(2158, 1, '2019-09-10 05:12:06', '2019-09-10 05:12:06', '', 'Loan Form', '', 'publish', 'closed', 'closed', '', 'loan-form', '', '', '2019-09-10 05:12:06', '2019-09-10 05:12:06', '', 0, 'http://procalc.loc/cost-calc/loan-form/', 0, 'cost-calc', '', 0),
(2161, 1, '2019-09-10 09:15:32', '2019-09-10 09:15:32', '', 'Body Mass Index (BMI)', '', 'publish', 'closed', 'closed', '', 'qwerty', '', '', '2019-09-10 09:15:32', '2019-09-10 09:15:32', '', 0, 'http://procalc.loc/cost-calc/qwerty/', 0, 'cost-calc', '', 0),
(2162, 1, '2019-09-10 12:22:13', '2019-09-10 11:22:13', '', 'Delivery Service', '', 'publish', 'closed', 'closed', '', 'delivery-service', '', '', '2019-09-10 12:22:13', '2019-09-10 11:22:13', '', 0, 'http://ulisting.loc/cost-calc/delivery-service/', 0, 'cost-calc', '', 0),
(2163, 1, '2019-09-10 12:36:09', '2019-09-10 11:36:09', '', 'Renovation', '', 'publish', 'closed', 'closed', '', 'renovation', '', '', '2019-09-10 12:36:09', '2019-09-10 11:36:09', '', 0, 'http://ulisting.loc/cost-calc/renovation/', 0, 'cost-calc', '', 0),
(2194, 1, '2018-04-02 12:44:27', '2018-04-02 12:44:27', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392452271{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', '8 Tips for Building a Bankable Business', 'Capitalize on low hanging fruit to identify a ballpark value added activity to beta test.', 'publish', 'closed', 'open', '', '8-tips-for-building-a-bankable-business', '', '', '2018-04-02 12:44:27', '2018-04-02 12:44:27', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?p=2194', 0, 'post', '', 0),
(2196, 1, '2018-04-02 12:46:20', '2018-04-02 12:46:20', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392437751{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', '4 Steps To Consider Before You Start', 'User generated content in real-time will have multiple touchpoints for offshoring.', 'publish', 'closed', 'open', '', '4-steps-to-consider-before-you-start', '', '', '2018-04-02 12:46:20', '2018-04-02 12:46:20', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?p=2196', 0, 'post', '', 0),
(2199, 1, '2018-04-02 12:47:09', '2018-04-02 12:47:09', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392426455{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'IT Solutions', 'At the end of the day, going forward, a new normal that has evolved from generation.', 'publish', 'closed', 'open', '', 'it-solutions', '', '', '2021-04-14 11:07:22', '2021-04-14 11:07:22', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?p=2199', 0, 'post', '', 0),
(2202, 1, '2018-04-02 12:48:09', '2018-04-02 12:48:09', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392383562{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Staffing', 'Bring to the table win-win survival strategies to ensure proactive domination.', 'publish', 'closed', 'open', '', 'staffing', '', '', '2021-04-06 11:07:47', '2021-04-06 11:07:47', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?p=2202', 0, 'post', '', 0),
(2902, 1, '2018-05-02 11:00:43', '2018-05-02 11:00:43', '<p>[vc_row css=\".vc_custom_1459507084186{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"40\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310610603{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]</p>\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:</p>\n<ul style=\"font-size: 13px;\">\n<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n<p>The teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n<p>With hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.</div>\n</li>\n<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n<p>The diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.</div>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.</p>\n<p>This allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.</p>\n<p>The effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.</p>\n<p>By the numbers, the effort:</p>\n<ul style=\"font-size: 13px; line-height: 22px;\">\n<li><strong>Reduced lead time by 43%</strong></li>\n<li><strong>Decreased variability by 50%</strong></li>\n<li><strong>Lowered the risk of back-order by 95%</strong></li>\n<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n<p>[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391920664{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Turning around a reactive pharma supply chain', '', 'publish', 'closed', 'closed', '', 'turning-around-a-reactive-pharma-supply-chain', '', '', '2018-05-02 11:00:43', '2018-05-02 11:00:43', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=stm_works&amp;p=2902', 0, 'stm_works', '', 0),
(2903, 1, '2018-05-02 11:01:23', '2018-05-02 11:01:23', '[vc_row css=\".vc_custom_1459507401741{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Surface Transport &amp; Logistics\" css=\".vc_custom_1453269716083{margin-bottom: 30px !important;}\"][vc_row_inner css=\".vc_custom_1453271494452{margin-bottom: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image source=\"featured_image\" img_size=\"395x256\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"40\"][vc_custom_heading text=\"For one leading pharmaceutical laboratory, success and double-digit sales growth came with a cost: an overburdened supply chain that threatened to reduce market share.\" font_container=\"tag:h6|text_align:left|line_height:26px\" use_theme_fonts=\"yes\" css=\".vc_custom_1456310402407{margin-bottom: 18px !important;}\" el_class=\"no_stripe remove_padding\"][vc_column_text]\n<p style=\"line-height: 22px;\">The effort vastly improved the company\'s <span style=\"color: #777777;\"><em>planning and execution functions</em></span>, they knew that in order to succeed in this era of technology their accounting systems needed to be much more robust than what they are. They turned to WP consulting to improve their accounting systems.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453271763899{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453272656287{padding-right: 45px !important;}\"][vc_custom_heading text=\"challenge\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The biggest challenge was that Arguzo was not utilizing technology properly. Too much of the work was still being recorded manually, which meant that the numbers took a long time to note down and then to be analyzed. Live data was also not available and decisions can only be made after all the required data and been received. This was holding Arguzo back; they knew they could corner more of the market if they had the ability to be more mobile. The work addressed three critical issues for Pharm Ltd.:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner css=\".vc_custom_1453272927441{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"solution\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#dddddd\" css=\".vc_custom_1453271595991{margin-bottom: 21px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1453270747989{padding-right: 45px !important;}\"][vc_custom_heading text=\"results\" font_container=\"tag:h3|font_size:24px|text_align:right|color:%23222222|line_height:30px\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1453271259318{padding-top: 18px !important;}\"][vc_column_text]Arguzo employees are now more empowered; Arguzo also has the benefit of generating reports instantaneously whenever needed. They can now make decisions on the fly based on the latest real time data.\n\nThe effort vastly improved the company\'s planning and execution functions, created and implemented a new stock policy that accounted for specific SKUs and key variables, streamlined the order preparation process and reduced distribution transport times.\n\nBy the numbers, the effort:\n<ul style=\"font-size: 13px; line-height: 22px;\">\n 	<li><strong>Reduced lead time by 43%</strong></li>\n 	<li><strong>Decreased variability by 50%</strong></li>\n 	<li><strong>Lowered the risk of back-order by 95%</strong></li>\n 	<li><strong>Increased stock for finished goods by 10%</strong></li>\n</ul>\n[/vc_column_text][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"611\" height=\"300\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391869201{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Constructing a best-in-class global procurement', '', 'publish', 'closed', 'closed', '', 'constructing-a-best-in-class-global-procurement', '', '', '2018-05-02 11:01:23', '2018-05-02 11:01:23', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=stm_works&amp;p=2903', 0, 'stm_works', '', 0),
(2904, 1, '2018-05-02 11:02:45', '2018-05-02 11:02:45', '[vc_row css=\".vc_custom_1459507381132{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_single_image image=\"5269\" img_size=\"full\" css=\".vc_custom_1555516726208{margin-bottom: 44px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" subtitle=\"Consumer Products\"][vc_row_inner css=\".vc_custom_1453269110562{margin-bottom: 53px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]The image of a company is very important. Would you want to work with a consultation company whose office was in shambles? We judge things often by their appearance, especially when seeing something for the first time. If you are an excellent company with a bad image or appearance then you may have loyal clients but new clients will be hard to get.\n\nWhat does work, however, is the ability to present the company as being professional and experienced. When we walk into an office that is neatly arranged and greatly designed we immediately begin to think positively about the company.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_charts values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\" width=\"395\" height=\"300\"][/vc_column_inner][/vc_row_inner][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" el_class=\"theme_style\"][vc_tta_section title=\"challenge\" tab_id=\"1453266957006-3f3e3dff-6ef8\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"solution\" tab_id=\"1453268945960-188d55af-b1f3\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"result\" tab_id=\"1453268943534-fe1934ed-d1be\"][vc_column_text]The challenge is to bring a company whose web presence is boring up to date. The challenge is to ensure that when a client visits your website they feel positive about your company. The challenge is that most customers will judge you based on appearance alone, and if your website looks unprofessional or poorly made then they will think your company as a whole is unprofessional. Each and every part of the organization matters when winning over a new client:\n<ul style=\"font-size: 13px;\">\n 	<li><strong style=\"font-size: 14px;\">Improve sales and operations and production planning:</strong>\n<div>\n\nThe teams focused their efforts on a few of the highest-value S&amp;OP levers in order to review the current planning process, identify gaps in the planning infrastructure and analytically understand demand and supply variability.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Determine the right inventory level:</strong>\n<div>\n\nWith hundreds of medications in the market, Pharm Ltd. needed a proper method to predict and manage their inventory. Using a mean absolute percentage analysis (MAPE), the teams defined appropriate levels for raw materials and finished products by mapping actual versus forecasted sales on the most important SKUs.\n\n</div></li>\n 	<li><strong style=\"font-size: 14px;\">Optimize the supply chain for perfect order planning:</strong>\n<div>\n\nThe diagnostic determined the stressors that affected sales and service levels. The teams focused on resolving issues related to higher-than-normal back-orders and lead times, which stressed the entire supply chain and led to delays in medications reaching consumers.\n\n</div></li>\n</ul>\n[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"619\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545391852309{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Increased sales productivity frees selling time and saves millions', '', 'publish', 'closed', 'closed', '', 'increased-sales-productivity-frees-selling-time-and-saves-millions', '', '', '2018-05-02 11:02:45', '2018-05-02 11:02:45', '', 0, 'http://consulting.stylemixthemes.com/demo/miami/?post_type=stm_works&amp;p=2904', 0, 'stm_works', '', 0),
(4451, 1, '2018-12-07 10:49:31', '2018-12-07 10:49:31', '<div class=\"contact_us\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [textarea your-message placeholder \"Your Message *\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* your-name placeholder \"First name *\"]\n            </div>\n            <div class=\"input-group\">\n                [email* your-email placeholder \"E-mail *\"]\n            </div>\n            <div class=\"input-group\">\n                [tel* your-phone placeholder \"Phone *\"]\n            </div>\n        </div>\n    </div>\n    <div class=\"input-group text-center\">\n      <button type=\"submit\" class=\"button theme_style_4 size-lg bordered icon_right\">Submit <i class=\"fa fa-chevron-right\"></i></button>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[your-message][your-name][your-email][your-phone]\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2018-12-07 10:49:31', '2018-12-07 10:49:31', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=wpcf7_contact_form&amp;p=4451', 0, 'wpcf7_contact_form', '', 0),
(4837, 1, '2018-12-25 04:19:55', '2018-12-25 04:19:55', '', 'New request for event -  Communicate with Your Employees, Motivate them, and Reward them', '', 'publish', 'closed', 'closed', '', 'new-request-for-event-communicate-with-your-employees-motivate-them-and-reward-them', '', '', '2018-12-25 04:19:55', '2018-12-25 04:19:55', '', 0, 'http://consulting.stylemixthemes.com/demo/event_member/new-request-for-event-communicate-with-your-employees-motivate-them-and-reward-them/', 0, 'event_member', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(5201, 1, '2019-03-25 08:48:27', '2019-03-25 08:48:27', '[vc_row][vc_column][rev_slider_vc alias=\"Home\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1552455753289{margin-top: -35px !important;background-color: rgba(0,46,91,0.75) !important;*background-color: rgb(0,46,91) !important;}\"][vc_column][stm_spacing lg_spacing=\"40\" md_spacing=\"40\" sm_spacing=\"20\" xs_spacing=\"20\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_custom_heading stripe_pos=\"hide\" stm_title_font_weight=\"500\" text=\"Free Consultation\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"wpcf7-response-output-absolute\" offset=\"vc_col-lg-8 vc_col-md-8\"][contact-form-7 id=\"1272\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1547623783077{background-color: #ffffff !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][vc_custom_heading text=\"Services\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"18\" xs_spacing=\"12\"][stm_animation_block animation=\"fadeIn\" animation_duration=\"2\" animation_delay=\"0\"][stm_services posts_per_page=\"6\" posts_per_row=\"3\" category=\"audit\" img_size=\"740x440\"][/stm_animation_block][stm_spacing lg_spacing=\"69\" md_spacing=\"69\" sm_spacing=\"50\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1553504602011{margin-top: 100px !important;margin-bottom: 80px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/Fotolia_95381323_Subscription-1.jpg?id=5136) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"overlay_4 fixed_bg\"][vc_column][vc_custom_heading icon=\"stm-check\" stripe_pos=\"hide\" text=\"Doing the right thing, at the right time.\" font_container=\"tag:h2|text_align:center|color:%23ffffff|line_height:64px\" use_theme_fonts=\"yes\" stripe_hide=\"yes\" subtitle_color=\"#ffffff\" css=\".vc_custom_1553504624742{padding-top: 100px !important;padding-bottom: 60px !important;}\"][vc_row_inner css=\".vc_custom_1553504918144{margin-bottom: 90px !important;padding-right: 200px !important;padding-left: 70px !important;}\"][vc_column_inner width=\"1/4\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_stats_counter counter_value=\"100\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1549356784354{margin-top: -5px !important;}\"][vc_column css_animation=\"none\" width=\"1/2\"][stm_spacing lg_spacing=\"71\" md_spacing=\"71\" sm_spacing=\"60\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"hide\" text=\"About Us\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"third_font_color\" css=\".vc_custom_1549378600459{margin-bottom: 35px !important;}\"][vc_column_text css=\".vc_custom_1461328617856{margin-bottom: 28px !important;}\"]<span style=\"color: #777777;\">We counsel our clients on their key strategic issues, leveraging our deep industry expertise and using analytical rigor to help them make informed decisions more quickly and solve their toughest and most critical business problems.</span>[/vc_column_text][vc_column_text]<span style=\"color: #777777;\">Founded in London in 1983 by three partners, we now employ more than 1,000 professionals worldwide. We advise and support global companies that are leaders in their industries.</span>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"71\" md_spacing=\"71\" sm_spacing=\"60\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"hide\" text=\"Frequently Asked Questions\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" el_class=\"third_font_color\" css=\".vc_custom_1549378665115{margin-bottom: 35px !important;}\"][vc_tta_accordion style=\"modern\" shape=\"square\" color=\"mulled-wine\" active_section=\"1\" css_animation=\"none\" no_fill=\"true\"][vc_tta_section title=\"What does Consulting WP do?\" tab_id=\"1461328856794-2dee9bba-e774\"][vc_column_text]We help entrepreneurs get ready to raise capital. Please note that we cannot help our clients raise capital. This usually consists of some or all of our services. This is a service that is heavily regulated.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What industries do you specialize in?\" tab_id=\"1461328897545-6227748f-d226\"][vc_column_text]We help entrepreneurs get ready to raise capital. Please note that we cannot help our clients raise capital. This usually consists of some or all of our services. This is a service that is heavily regulated.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Can you help us raise money?\" tab_id=\"1461328919259-f69cd27c-5029\"][vc_column_text]We help entrepreneurs get ready to raise capital. Please note that we cannot help our clients raise capital. This usually consists of some or all of our services. This is a service that is heavily regulated.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][stm_spacing lg_spacing=\"77\" md_spacing=\"77\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][stm_testimonials count=\"3\" style=\"style_3\" category=\"background\" navigation_type=\"bullets\" smart_speed=\"300\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1553425532674{background-color: #f2f2f2 !important;}\"][vc_column][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"60\" xs_spacing=\"60\"][vc_custom_heading text=\"Company News\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1553425365112{margin-bottom: 49px !important;}\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"67\" md_spacing=\"67\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1553425458588{background-color: #ffffff !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1553422640194{padding-right: 15px !important;}\"][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"70\" xs_spacing=\"70\"][vc_custom_heading stripe_pos=\"hide\" text=\"All-in-One Web Solution\nfor Your Business\" font_container=\"tag:h2|text_align:left|line_height:48px\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"6\" md_spacing=\"6\" sm_spacing=\"6\" xs_spacing=\"6\"][vc_column_text css=\".vc_custom_1553422696959{padding-right: 20px !important;padding-left: 0px !important;}\"]Bring to the table win-win survival strategies to ensure proactive domination. At the end of the day, going forward.[/vc_column_text][vc_column_text]\n<ul>\n 	<li>Different Demos with Real Content</li>\n 	<li>Advanced Portfolio with Case Studies</li>\n 	<li>24/7 Support with Live Chat</li>\n</ul>\n[/vc_column_text][vc_btn title=\"Contact us\" style=\"custom\" custom_background=\"#3595d6\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:%2Fcontact-us|||\"][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1553422531283{background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/bg2.jpg?id=5133) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1553425438434{padding-top: 42px !important;padding-bottom: 39px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"180x96\" images=\"5182,5177,5179,5180,5181,5178\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_4\" css=\".vc_custom_1553505022573{margin-bottom: -1px !important;background-image: url(http://consulting.stylemixthemes.com/demo/wp-content/uploads/sites/36/2018/04/cases.jpg?id=5134) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"78\" md_spacing=\"78\" sm_spacing=\"60\" xs_spacing=\"60\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading stripe_pos=\"hide\" text=\"<mark>REQUEST</mark> A CALL BACK.\" font_container=\"tag:h3|font_size:30px|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1461400368338{margin-bottom: -6px !important;}\"][vc_column_text]<span style=\"color: #ffffff;\">Would you like to speak to one of our financial advisers over the phone? Just submit your details and we’ll be in touch shortly. You can also email us if you would prefer.</span>[/vc_column_text][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-8\"][stm_spacing lg_spacing=\"7px\" md_spacing=\"7px\" sm_spacing=\"7px\" xs_spacing=\"30px\"][contact-form-7 id=\"4\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"91\" md_spacing=\"91\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row]', 'Home with Counter', '', 'publish', 'closed', 'closed', '', 'sample-page-2-3', '', '', '2019-03-25 08:48:27', '2019-03-25 08:48:27', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=5201', 0, 'page', '', 0),
(5588, 1, '2019-06-02 08:58:34', '2019-06-02 08:58:34', '', 'placeholder', '', 'inherit', 'closed', 'closed', '', 'placeholder-2', '', '', '2019-06-02 08:58:34', '2019-06-02 08:58:34', '', 0, 'http://qualstream.net/wp-content/uploads/2016/06/placeholder.gif', 0, 'attachment', 'image/gif', 0),
(5593, 1, '2015-12-30 06:03:40', '2015-12-30 06:03:40', '[vc_row css=\".vc_custom_1459507704971{margin-top: 85px !important;margin-bottom: 40px !important;}\"][vc_column width=\"1/2\"][vc_column_text]\n<h1>Heading 1</h1>\nWrote Chavelet Erickson Cotcke more than a century and a half ago. He forgot to mention that if you did not patent your idea, many would copy it, have it built cheaply offshore, and probably drive you to bankruptcy.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h2>Heading 2</h2>\nMore than 4,400 patents have been awarded by the US Patent and Trademark office for variations of a mousetrap alone! In fact, according to the Smithsonian, more patents have been awarded for a mousetrap than any other.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1451475542681{margin-bottom: 22px !important;}\"][vc_column width=\"1/2\"][vc_column_text]\n<h3>Heading 3</h3>\nAs an entrepreneur, social media is your best friend (free, ubiquitous marketing!), but in a busy startup with what feels like an endless to-do list, it probably seems like just another chore.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h4>Heading 4</h4>\nIt’s absolutely a smart investment of your time to spend 45-55 minutes each day in your social channels, and the tips below will show you how you can make the most of your time, curate content.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1451761604071{margin-bottom: 72px !important;}\"][vc_column width=\"1/2\"][vc_column_text]\n<h5>Heading 5</h5>\nKen Galifianakis, in his new book The Art of the Smart 1.1, calls it the best thing that ever happened to entrepreneurs, and offers practical insights on using it effectively, social media is free and ubiquitous.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h6>Heading 6</h6>\nHere is a summary of his tips from Chapter 3, The Art of Marketing: Draft a Plant and USA an Editorial Moleskine: A months-long planning project is a waste of time and agencies are a waste of money.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"top\" css=\".vc_custom_1451888290557{margin-bottom: 32px !important;background-color: #f2f2f2 !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1451899944712{padding-top: 33px !important;padding-bottom: 60px !important;}\"][vc_custom_heading text=\"buttons on light\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1451882578993{margin-bottom: 30px !important;}\"][vc_row_inner][vc_column_inner][vc_btn title=\"Extended button\" style=\"outline\" color=\"theme_style_1\" size=\"lg\" i_icon_fontawesome=\"fa fa-briefcase\" add_icon=\"true\" css=\".vc_custom_1540892212116{margin-right: 26px !important;}\"][vc_btn title=\"Extended button\" style=\"flat\" color=\"theme_style_1\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\"][stm_spacing lg_spacing=\"1\" md_spacing=\"1\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_btn title=\"Extended button\" style=\"flat\" color=\"theme_style_3\" size=\"lg\" i_icon_fontawesome=\"fa fa-briefcase\" add_icon=\"true\" css=\".vc_custom_1451887219751{margin-right: 26px !important;}\"][vc_btn title=\"Extended button\" style=\"flat\" color=\"theme_style_3\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\" css=\".vc_custom_1545636254835{margin-top: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1533641397297{padding-top: 33px !important;padding-bottom: 60px !important;padding-left: 60px !important;background-color: #222222 !important;}\"][vc_custom_heading text=\"buttons on dark\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1451887944726{margin-bottom: 30px !important;}\"][vc_row_inner][vc_column_inner][vc_btn title=\"Extended button\" style=\"flat\" color=\"theme_style_3\" size=\"lg\" i_icon_fontawesome=\"stm-home\" add_icon=\"true\" css=\".vc_custom_1545393859382{margin-right: 26px !important;}\" sub_title=\"Button sub text\"][vc_btn title=\"Extended button\" style=\"outline\" shape=\"square\" color=\"white\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\" css=\".vc_custom_1545636128876{margin-top: -1px !important;}\"][stm_spacing lg_spacing=\"1\" md_spacing=\"1\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_btn title=\"Extended button\" style=\"flat\" color=\"white\" size=\"lg\" i_icon_fontawesome=\"fa fa-briefcase\" add_icon=\"true\" css=\".vc_custom_1533641426048{margin-right: 26px !important;}\" sub_title=\"Button sub text\"][vc_btn title=\"Extended button\" style=\"flat\" shape=\"square\" color=\"white\" i_align=\"right\" i_icon_fontawesome=\"fa fa-chevron-right\" add_icon=\"true\" css=\".vc_custom_1545636155099{margin-top: -1px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1451888907770{margin-bottom: 24px !important;}\"][vc_column][vc_column_text]\n<h4>Full width</h4>\nEntrepreneurs come up with new business ideas all the time. Often, they just plunge ahead to develop the product or service without really taking the time to determine if market conditions are favorable, and, if they are favorable and assess the ability of the business concept to take advantage of the opportunity. We have found that by following a focused, two-step process, you can reduce risks and improve the odds of success.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1451888913806{margin-bottom: 24px !important;}\"][vc_column][vc_custom_heading text=\"Two columns\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]When it comes to the question of applying for a bank loan to fund your startup, most experts say, don’t bother. Banks are rarely interested in funding early stage companies these days, especially since the 2008 financial crash.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Write a clear, cogent business plan. However, it is not impossible to secure bank funding for your startup. Give yourself better odds with thoughtful planning, diligent preparation, and the eight tips.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1451888918278{margin-bottom: 24px !important;}\"][vc_column][vc_custom_heading text=\"Three columns\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]All you need is a business model, we are told by business gurus. Report of the death of the business plan has been an exaggeration, to paraphrase.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Often read opinions in popular business press that the business plan is no longer relevant. On the other hand, must not only explain.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]While there is no consensus on the definition of a business model, most people use it as shorthand for the revenue model of a business.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1451888918278{margin-bottom: 24px !important;}\"][vc_column][vc_custom_heading text=\"Four columns\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text]Selling your business to a third party, for enough cash to retire in style, is the ultimate dream of many business owner partners.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]Having these primary value drivers in place: Stable, motivated management team and a high-performing workforce Growing cash flow, revenue.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]He has operated a neighborhood sushi restaurant for five years and decided that it is time to open a second location restaurant.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]He mentioned that he was aware of a troubled restaurant in a good location and thought that he could buy the cafe and then re-open in that space.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1459507735619{margin-bottom: 108px !important;}\"][vc_column][vc_custom_heading text=\"custom layout 2/3 + 1/3\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Many businesses, large and small, have a huge source of great ideas that can help them improve, innovate, and grow, and yet so many of these companies never think of using this amazing corporate asset. What is this highly valuable asset? Says Morgan Fraud, the author of The Thinking Corporation, “Given that we are all capable of contributing new ideas, the question becomes how do you successfully generate, capture, process and implement ideas?”.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Successful mission statements may take time to create but when they are developed correctly, they provide a company with a clear purpose.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545393808190{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Typography', '', 'publish', 'closed', 'closed', '', 'typography', '', '', '2015-12-30 06:03:40', '2015-12-30 06:03:40', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=176', 0, 'page', '', 0),
(5594, 1, '2015-12-14 07:29:15', '2015-12-14 07:29:15', '<div class=\"request_callback\">\n    <div class=\"row\">\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [select services_consulting first_as_label \"Business Planning\" \"Audit & Assurance\" \"Strategic Planning\" \"Trades & Stocks\" \"Financial Projections\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [text* text-name placeholder akismet:author \"First name\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                [tel* text-phone placeholder \"Phone number\"]\n            </div>\n        </div>\n        <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n            <div class=\"input-group\">\n                <button type=\"submit\" class=\"vc_general vc_btn3 vc_btn3-size-md  vc_btn3-style-flat vc_btn3-color-theme_style_1\" style=\" text-align: center; display: inline-block; color:#fff\">Submit</button>\n            </div>\n        </div>\n    </div>\n</div>\n1\nTitle\n<wordpress@consulting.stylemixthemes.com/demo>\ntest@gmail.com\n[services_consulting][text-name][text-phone]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Request A Call Back', '', 'publish', 'closed', 'closed', '', 'contact-form-1-2', '', '', '2015-12-14 07:29:15', '2015-12-14 07:29:15', '', 0, 'http://consulting.stylemixthemes.com/demo/?post_type=wpcf7_contact_form&amp;p=4', 0, 'wpcf7_contact_form', '', 0),
(6122, 1, '2019-11-20 10:07:25', '2019-11-20 10:07:25', '[vc_row][vc_column width=\"2/3\"][vc_column_text]Companies seem to dislike the term ‘turnaround consulting’ because it represents failure. The truth is that turnaround consulting represents success at realizing the company is going in the wrong direction. The only time the company fails is when it is not possible to do a turnaround anymore. We help companies pivot into more profitable directions where they can expand and grow. It is inevitable that companies will end up making a few mistakes; we help them correct these mistakes.\n\nWe help companies turnaround their non-profitable ventures into something that benefits them. Our specialty lies in understanding what makes a company special and what makes it tick.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][vc_single_image image=\"6474\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1573722038433{background-color: #f2f4fa !important;}\"][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Trades &amp; Stocks\" use_theme_fonts=\"yes\"][vc_column_text]An excellent Audit service is necessary for any company to be financially sound. Our Audit &amp; Assurance services ensure that there is no mistake or wrongdoing in your company undetected. Some companies have the mistaken idea that audits are only necessary when malicious wrongdoings occur in the data. Thus any company that is large enough needs to have outside audit and assurance done:[/vc_column_text][vc_column_text]\n<ul>\n 	<li class=\"p1\">Don James/Semplice – Article and News research</li>\n 	<li class=\"p1\">HighVoltageBusiness – Company and Industry Research</li>\n 	<li class=\"p1\">Goovers – Company and Industry Research</li>\n 	<li class=\"p1\">IRISpace – Industry Research</li>\n 	<li class=\"p1\">Lexos-Nexos – Company, Industry, Market Research</li>\n 	<li class=\"p1\">Plombett – Industry Research</li>\n 	<li class=\"p1\">Pronounce – market analysis report “slices”</li>\n</ul>\n[/vc_column_text][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"0\"][stm_charts design=\"bar\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22%23fe6c61%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22%235472d2%22%7D%5D\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Reliable &amp; Safe\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"15\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-suitcase-2\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Financial Services\nConsulting\"]We provide planning services to help financial institutions minimize their costs and expenses.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"fa fa-plane\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Travel and Aviation\nConsulting\"]Always develop strategies specifically designed to meet and reflect the company’s requirements.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-davos_cart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Retail\nConsulting\"]Our services are based on the best practices and highly sophisticated technology to satisfy the needs of clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"40\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-home\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Financial Services\nConsulting\"]We provide planning services to help financial institutions minimize their costs and expenses.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"stm-shield_flat\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Travel and Aviation\nConsulting\"]We always develop strategies specifically designed to meet and reflect the company’s requirements.[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box icon=\"fa fa-bar-chart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Retail\nConsulting\"]We are serving the best practices and using highly sophisticated technology to satisfy the needs of clients.[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1573724454403{background-color: #f2f4fa !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"15\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/2\"][stm_info_box style=\"style_7\" title=\"Raw Spreads\" link=\"url:%2F|title:Read%20more||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_info_box style=\"style_7\" title=\"No Dealing Desk\" link=\"url:%2F|title:Read%20more||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][stm_info_box style=\"style_7\" title=\"State of the Art\" link=\"url:%2F|title:Read%20more||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\"][stm_info_box style=\"style_7\" title=\"Raw Spreads\" link=\"url:%2F|title:Read%20more||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"40\" md_spacing=\"35\" sm_spacing=\"30\" xs_spacing=\"30\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"15\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_column_text]\n<p style=\"text-align: center\">While we are focusing on solving the Human Resources of the businesses, their owners can have more time and focus on their core responsibilities.</p>\n[/vc_column_text][stm_spacing lg_spacing=\"40\" md_spacing=\"35\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Starter\" price=\"Free\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\"]\n<ul>\n 	<li>3 projects</li>\n 	<li>30-day version history</li>\n 	<li>Up to 2 editors</li>\n 	<li>Unlimited cloud storage</li>\n</ul>\n[/stm_pricing_plan][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"72\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Professional\" price=\"$12\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\" label=\"Popular\" price_suffix=\"/mo\"]\n<ul>\n 	<li>Unlimited projects</li>\n 	<li>Unlimited version history</li>\n 	<li>Custom file/user permissions</li>\n 	<li>Invite-only private projects</li>\n</ul>\n[/stm_pricing_plan][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Organization\" price=\"$24\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\" price_suffix=\"/mo\"]\n<ul>\n 	<li>Org-wide design systems</li>\n 	<li>Centralized teams</li>\n 	<li>Private plugins</li>\n 	<li>Plugin administration</li>\n</ul>\n[/stm_pricing_plan][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Our partners says\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"15\" sm_spacing=\"10\" xs_spacing=\"10\"][stm_testimonials count=\"4\" style=\"style_5\" navigation_type=\"bullets\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1574313475601{margin-bottom: -60px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=6145) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"hide\" text=\"TRADE ON THE GO!\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"hide_indents\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center\"><span style=\"color: #ffffff\">Improve the management of your company and save money by making wiser decisions. Discover all the services we offer.</span></p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_btn title=\"Get now\" style=\"flat\" color=\"theme_style_3\" align=\"center\" link=\"url:%2Fservices|title:Apply%20for%20Services||\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row]', 'Service Layout 4', '', 'publish', 'closed', 'closed', '', 'service-layout-4', '', '', '2019-11-20 10:07:25', '2019-11-20 10:07:25', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6122', 0, 'page', '', 0),
(6137, 1, '2019-11-20 12:33:44', '2019-11-20 12:33:44', '[vc_row][vc_column][rev_slider alias=\"service_slider\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"0\"][/vc_column][/vc_row][vc_row][vc_column el_class=\"blockquote_style_2\"][vc_column_text]\n<p class=\"p1\">Companies seem to dislike the term ‘turnaround consulting’ because it represents failure. The truth is that turnaround consulting represents success at realizing the company is going in the wrong direction. The only time the company fails is when it is not possible to do a turnaround anymore. We help companies pivot into more profitable directions where they can expand and grow. It is inevitable that companies will end up making a few mistakes; we help them correct these mistakes.</p>\n<p class=\"p1\">We help companies turnaround their non-profitable ventures into something that benefits them. Our specialty lies in understanding what makes a company special and what makes it tick.</p>\n[/vc_column_text][vc_column_text]\n<blockquote>\n<p class=\"p1\">Consulting WP – we help companies assess their skills and choose a new direction which utilizes the talents of the team and resources most productively.</p>\n</blockquote>\n[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1573625850903{background-color: #f2f4fa !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Why traders choose us\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"15\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_7\" title=\"Raw Spreads\" link=\"url:%2F|||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_7\" title=\"No Dealing Desk\" link=\"url:%2F|||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_7\" title=\"State of the Art\" link=\"url:%2F|||\"]Receive premium pricing from Top Tier financial institutions. Pricing from Top Tier financial institutions.[/stm_info_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Our experts\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\n<p style=\"text-align: center\">Our team of professionals includes HR consultants,\nexecutive coaches, business professionals, and more.</p>\n[/vc_column_text][stm_staff_list style=\"grid\" grid_view=\"minimal\" per_row=\"3\" count=\"5\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1573644004224{background-color: #304157 !important;}\"][vc_column][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Reliable &amp; Safe\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"15\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"stm-suitcase-2\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Real Estate and\nConstruction\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.</span>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"fa fa-plane\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Travel and Aviation\nConsulting\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We always develop strategies specifically designed to meet and reflect the company’s requirements.</span>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"stm-davos_cart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Retail and Consumer\nProducts\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We are serving the best practices and using highly sophisticated technology to satisfy the needs of clients.</span>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"40\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"stm-home\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Financial\nServices\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We provide planning services to help financial institutions minimize their costs and expenses.</span>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"stm-shield_flat\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Nonprofit\nOrganizations\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We always develop strategies specifically designed to meet and reflect the company’s requirements.</span>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_icon_box title_color=\"custom\" icon=\"fa fa-bar-chart\" style=\"icon_left\" icon_size=\"21\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_width=\"70\" title=\"Media and\nEntertainment\" title_color_custom=\"#ffffff\"]<span style=\"color: #ffffff\">We are a company that offers design and build services for you from initial sketches to the final construction.</span>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Range of markets\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"15\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][stm_info_box style=\"style_8\" title_icon=\"stm-target\" title=\"Forex\"]Our team has expertise in developing compensation programs that increase workplace satisfaction and productivity.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box style=\"style_8\" title_icon=\"stm-target\" title=\"Metals\"]We recognize any issues and prescribe arrangements, we benchmark wage for made situations inside extending associations.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box style=\"style_8\" title_icon=\"stm-target\" title=\"Indices\"]We offer inventive ways to deal with your work issues when you are tested by everything.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box style=\"style_8\" title_icon=\"stm-target\" title=\"Oil range\"]Our experienced coaches work with employments of your company to help unleash their full potential and motivate them to perform better.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1574312017431{margin-bottom: -60px !important;background-color: #f2f4fa !important;}\"][vc_column][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Our partners says\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"15\" xs_spacing=\"10\"][stm_testimonials count=\"4\" style=\"style_5\" navigation_type=\"bullets\"][stm_spacing lg_spacing=\"90\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row]', 'Service Layout 5', '', 'publish', 'closed', 'closed', '', 'service-layout-5', '', '', '2019-11-20 12:33:44', '2019-11-20 12:33:44', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6137', 0, 'page', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6168, 1, '2019-11-21 12:03:42', '2019-11-21 12:03:42', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_tta_accordion c_position=\"right\" active_section=\"1\"][vc_tta_section title=\"How many times do I have to tell you a few ways?\" tab_id=\"1574338169950-e0b9e6a6-2cc6\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is do I have to tell you a few lorem?\" tab_id=\"1574338209493-2bde497c-9fb4\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"I have a technical problem I need resolved, who do I email?\" tab_id=\"1574338208492-e38519b2-252c\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How many times do I have to tell you a few ways?\" tab_id=\"1574338207987-d1d0ac2b-e38b\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What other services are you compatible with?\" tab_id=\"1574397812647-99a54a4b-1e29\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"I have a technical problem I need resolved, who do I email?\" tab_id=\"1574397890371-5142bfca-d217\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How many times do I have to tell you a few ways?\" tab_id=\"1574397899955-e0fdfa6e-d23c\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What other services are you compatible with?\" tab_id=\"1574397912180-543d82a5-3462\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"I have a technical problem I need resolved, who do I email?\" tab_id=\"1574397915650-1f030d90-611c\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How many times do I have to tell you a few ways?\" tab_id=\"1574397920191-e0608f7e-2b70\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What other services are you compatible with?\" tab_id=\"1574397924761-1640dfbf-cd09\"][vc_column_text]Progressively generate synergistic total linkage through cross-media intellectual capital. Enthusiastically parallel task team building e-tailers without standards compliant initiatives.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column css=\".vc_custom_1576238094836{padding-right: 30px !important;padding-left: 30px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_row_inner el_class=\"third_bg_color\"][vc_column_inner el_class=\"third_bg_color\" css=\".vc_custom_1574398098802{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_custom_heading stripe_pos=\"hide\" text=\"HOW CAN WE\nHELP YOU?\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text css=\".vc_custom_1574338643858{margin-bottom: 20px !important;}\"]Contact us at the Consulting WP office nearest to you or submit a business inquiry online.[/vc_column_text][vc_btn title=\"Contacts\" style=\"flat\" color=\"white\" i_icon_fontawesome=\"stm-lnr-phone\" add_icon=\"true\" link=\"url:http%3A%2F%2Fdemo-import.loc%2Fcontact-five%2F|title:Contact||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'FAQ', '', 'publish', 'closed', 'closed', '', 'faq', '', '', '2019-11-21 12:03:42', '2019-11-21 12:03:42', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6168', 0, 'page', '', 0),
(6180, 1, '2019-11-22 05:03:08', '2019-11-22 05:03:08', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_video link=\"https://www.youtube.com/embed/04DRXybgLvA\" image=\"6474\" img_size=\"716x454\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Benefits and rewards\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" el_class=\"remove_padding\"][vc_column_text]The solution WP consulting came up with combined cutting edge technology with real world practicality. Everyone knew that the systems had to be updated, the real challenge was updating them without disrupting the whole organization in a negative way. The solution was to introduce proper workload management done through computers, while providing mobile platforms to the stakeholders.\n\nThis allowed the workers to be involved in the job instead of feeling like they had been made redundant by technology.[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_8\" title_icon=\"stm-suitcase-2\" title=\"Financial Services Consulting\"]We provide planning services to help financial institutions minimize their costs and expenses.[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_8\" title_icon=\"fa fa-plane\" title=\"Travel and Aviation Consulting\"]<span style=\"font-weight: 400\">We always develop strategies specifically designed to meet and reflect the company’s requirements.</span>[/stm_info_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_info_box style=\"style_8\" title_icon=\"stm-davos_cart\" title=\"Retail Consulting\"]<span style=\"font-weight: 400\">We are serving the best practices and using highly sophisticated technology to satisfy the needs of clients.</span>[/stm_info_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Open positions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"20\"][stm_vacancies style=\"style_2\"][/vc_column][/vc_row]', 'Job Listing Grid', '', 'publish', 'closed', 'closed', '', 'job-listing-grid', '', '', '2019-11-22 05:03:08', '2019-11-22 05:03:08', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6180', 0, 'page', '', 0),
(6195, 1, '2019-11-22 11:16:32', '2019-11-22 11:16:32', '[vc_row][vc_column][stm_spacing lg_spacing=\"17\" md_spacing=\"17\" sm_spacing=\"17\" xs_spacing=\"17\"][stm_staff_list style=\"list_2\" count=\"8\"][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"50\" xs_spacing=\"30\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1574659099111{margin-bottom: -60px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=6201) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"hide\" text=\"JOIN TO OUR TEAM\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"hide_indents\"][stm_spacing lg_spacing=\"20\" md_spacing=\"20\" sm_spacing=\"20\" xs_spacing=\"10\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center\"><span style=\"color: #ffffff\">We are looking for proactive professionals with extensive business expertise and a high level of personal involvement to join our team. Send your CV now.</span></p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_btn title=\"Send SV\" style=\"flat\" color=\"theme_style_3\" align=\"center\" link=\"url:%2Fservices|title:Apply%20for%20Services||\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row]', 'Our team list 2', '', 'publish', 'closed', 'closed', '', 'our-team-list-2', '', '', '2019-11-22 11:16:32', '2019-11-22 11:16:32', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6195', 0, 'page', '', 0),
(6206, 1, '2019-11-25 05:33:35', '2019-11-25 05:33:35', '\n                [vc_row][vc_column][stm_services posts_per_page=\"12\" posts_per_row=\"3\" img_size=\"350x200\" style=\"style_4\"][/vc_column][/vc_row]', 'Services Grid 2', '', 'publish', 'closed', 'closed', '', 'services-grid-2', '', '', '2019-11-25 05:33:35', '2019-11-25 05:33:35', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6206', 0, 'page', '', 0),
(6212, 1, '2019-11-25 06:59:54', '2019-11-25 06:59:54', '[vc_section full_width=\"stretch_row\" full_height=\"yes\" css=\".vc_custom_1576565274506{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=6474) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row][vc_column][stm_spacing lg_spacing=\"80\" md_spacing=\"70\" sm_spacing=\"60\" xs_spacing=\"50\"][stm_spacing lg_spacing=\"80\" md_spacing=\"70\" sm_spacing=\"60\" xs_spacing=\"50\"][vc_custom_heading text=\"COMING SOON\" font_container=\"tag:h1|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1574671813999{margin-bottom: 20px !important;}\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p class=\"p1\" style=\"text-align: center\"><span style=\"color: #ffffff\">We are inviting you to participate in the unique event - Career Fair. Be prepared to interview with managers and recruiters. Don’t forget your resume as there would be representatives of the best companies in the city.</span></p>\n[/vc_column_text][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"20\" xs_spacing=\"20\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][stm_countdown style=\"style_2\" countdown=\"2020-10-30 12:12\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][/vc_section]', 'Coming Soon', '', 'publish', 'closed', 'closed', '', 'coming-soon', '', '', '2019-11-25 06:59:54', '2019-11-25 06:59:54', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6212', 0, 'page', '', 0),
(6228, 1, '2019-11-25 09:36:27', '2019-11-25 09:36:27', '\n                [vc_row][vc_column width=\"2/3\"][stm_services posts_per_page=\"12\" img_size=\"260x170\" style=\"style_5\"][/vc_column][vc_column width=\"1/3\"][stm_sidebar sidebar=\"577\"][/vc_column][/vc_row]', 'Services List', '', 'publish', 'closed', 'closed', '', 'services-list', '', '', '2019-11-25 09:36:27', '2019-11-25 09:36:27', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6228', 0, 'page', '', 0),
(6238, 1, '2019-11-26 04:29:34', '2019-11-26 04:29:34', '[vc_row][vc_column width=\"1/3\"][vc_single_image image=\"6474\" img_size=\"full\" style=\"vc_box_rounded\"][stm_spacing][/vc_column][vc_column width=\"2/3\"][vc_column_text]Consulting WP is a global consulting powerhouse. We began our operations a few decades ago and have grown due to excellent relationships with our clients. We started out small, with just a few people and a small office, but today we have offices in multiple countries with hundreds of people working inside them.\n\nWe achieved our success because of how successfully we integrate with our clients. One complaint many people have about consultants is that they can be disruptive. Our clients face no such issues.[/vc_column_text][vc_column_text]\n<blockquote>We see ourselves as a forward looking group of passionate property professionals with the relevant experience to match.</blockquote>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Why choose us\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][stm_spacing lg_spacing=\"17\" md_spacing=\"17\" sm_spacing=\"17\" xs_spacing=\"17\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][stm_icon_box icon=\"fa fa-plane\" icon_size=\"26\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_height=\"60\" title=\"Travel and Aviation\nConsultingv\" title_font_size=\"16\" title_line_height=\"22\"]Consultants ranked firms on a scale of one to 10, based on prestige, firm culture, work-life balance, compensation, and other factors.[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][stm_icon_box icon=\"stm-suitcase-2\" icon_size=\"26\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_height=\"60\" title=\"Business Services\nConsulting\" title_font_size=\"16\" title_line_height=\"22\"]We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][stm_icon_box icon=\"stm-davos_cart\" icon_size=\"26\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_height=\"60\" title=\"Consumer Products\nConsulting\" title_font_size=\"16\" title_line_height=\"22\"]We are a company that offers design and build services for you from initial sketches to the final construction.[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][stm_icon_box icon=\"stm-glob-building\" icon_size=\"26\" icon_color=\"base\" icon_bg_color=\"third_bg\" icon_height=\"60\" title=\"Financial Services\nConsulting\" title_font_size=\"16\" title_line_height=\"22\"]We are a dynamic niche consulting firm that has been helping visionary financial services brands convey their true essence.[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\"][vc_column][stm_spacing lg_spacing=\"75\" md_spacing=\"65\" sm_spacing=\"55\" xs_spacing=\"50\"][vc_row_inner][vc_column_inner width=\"5/12\"][vc_custom_heading text=\"More than 25 Years\nof Experience\" use_theme_fonts=\"yes\"][vc_column_text]We work with ambitious leaders who want their future to be successful and help them achieve extraordinary outcomes.[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_stats_counter stat_counter_style=\"style_5\" icon=\"stm-ankara-case\" counter_value=\"321\" title=\"projects complited\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][stm_stats_counter stat_counter_style=\"style_5\" icon=\"stm-ankara-trophy\" counter_value=\"19\" title=\"awards wining\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_stats_counter stat_counter_style=\"style_5\" icon=\"stm-ankara-user\" counter_value=\"27\" title=\"workers employed\"][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][stm_stats_counter stat_counter_style=\"style_5\" icon=\"stm-ankara-like\" counter_value=\"280\" title=\"satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"75\" md_spacing=\"65\" sm_spacing=\"55\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Our mission\" use_theme_fonts=\"yes\"][vc_column_text]Our renowned coaching programs will allow you to:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days,\nweeks, or even months at a time</li>\n</ul>\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_video link=\"https://www.youtube.com/embed/04DRXybgLvA\" image=\"6474\" img_size=\"552x320\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"80\" md_spacing=\"70\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1574751973770{background-color: #f2f4fa !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Our team\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center\">Our team of professionals includes HR consultants, executive coaches, business professionals, and more.</p>\n[/vc_column_text][stm_spacing lg_spacing=\"60\" md_spacing=\"50\" sm_spacing=\"40\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][stm_staff_list style=\"grid\" grid_view=\"minimal\" image_style=\"img_rounded\" per_row=\"3\" count=\"6\"][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][stm_image_carousel grayscale=\"yes\" images=\"6474\"][stm_spacing lg_spacing=\"50\" md_spacing=\"30\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column][/vc_row]', 'About Layout 4', '', 'publish', 'closed', 'closed', '', 'about-layout-4', '', '', '2019-11-26 04:29:34', '2019-11-26 04:29:34', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6238', 0, 'page', '', 0),
(6266, 1, '2019-11-26 09:25:26', '2019-11-26 09:25:26', '\n                [vc_row][vc_column][stm_services posts_per_page=\"12\" posts_per_row=\"3\" img_size=\"360x180\" style=\"style_6\"][/vc_column][/vc_row]', 'Services Grid 3', '', 'publish', 'closed', 'closed', '', 'services-grid-3', '', '', '2019-11-26 09:25:26', '2019-11-26 09:25:26', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6266', 0, 'page', '', 0),
(6273, 1, '2019-11-26 12:21:32', '2019-11-26 12:21:32', '\n                [vc_row][vc_column][stm_portfolio posts_per_page=\"9\" style=\"style_2\" load_more_enable=\"true\"][/vc_column][/vc_row]', 'Portfolio', '', 'publish', 'closed', 'closed', '', 'portfolio-2', '', '', '2019-11-26 12:21:32', '2019-11-26 12:21:32', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6273', 0, 'page', '', 0),
(6285, 1, '2019-11-27 11:20:42', '2019-11-27 11:20:42', '\n                [vc_row][vc_column width=\"2/3\"][stm_news loop=\"size:10|post_type:post\" view_style=\"style_3\"][/vc_column][vc_column width=\"1/3\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row]', 'News list', '', 'publish', 'closed', 'closed', '', 'news-list', '', '', '2019-11-27 11:20:42', '2019-11-27 11:20:42', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6285', 0, 'page', '', 0),
(6297, 1, '2019-11-27 12:49:48', '2019-11-27 12:49:48', '\n                [vc_row][vc_column][stm_news loop=\"size:10|post_type:post\" view_style=\"style_4\"][/vc_column][/vc_row]', 'News grid', '', 'publish', 'closed', 'closed', '', 'news-grid', '', '', '2019-11-27 12:49:48', '2019-11-27 12:49:48', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6297', 0, 'page', '', 0),
(6306, 1, '2019-11-28 09:29:04', '2019-11-28 09:29:04', '\n                [vc_row][vc_column][stm_works grid_style=\"style_3\" works_count=\"8\" cols=\"2\"][/vc_column][/vc_row]', 'Our work grid', '', 'publish', 'closed', 'closed', '', 'our-work-grid-2', '', '', '2019-11-28 09:29:04', '2019-11-28 09:29:04', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6306', 0, 'page', '', 0),
(6318, 1, '2019-12-09 11:41:49', '2019-12-09 11:41:49', '\n                [vc_row][vc_column width=\"2/3\"][stm_news loop=\"size:5|post_type:stm_works\" view_style=\"style_3\" img_size=\"260x170\"][/vc_column][vc_column width=\"1/3\"][stm_sidebar sidebar=\"573\"][/vc_column][/vc_row]', 'Cases list', '', 'publish', 'closed', 'closed', '', 'cases-list', '', '', '2019-12-09 11:41:49', '2019-12-09 11:41:49', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6318', 0, 'page', '', 0),
(6326, 1, '2019-12-09 12:18:53', '2019-12-09 12:18:53', '\n                [vc_row][vc_column][stm_news loop=\"size:9|post_type:stm_works\" view_style=\"style_5\" img_size=\"360x190\"][/vc_column][/vc_row]', 'Cases grid', '', 'publish', 'closed', 'closed', '', 'cases-grid', '', '', '2019-12-09 12:18:53', '2019-12-09 12:18:53', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6326', 0, 'page', '', 0),
(6333, 1, '2019-12-10 05:14:51', '2019-12-10 05:14:51', '[vc_row css=\".vc_custom_1575960477898{background-color: #f2f4fa !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][stm_cost_calculator calculator=\"2163\" style=\"style_2\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading text=\"Subscription Plans\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center\">Our company offers you different packages to choose from. It helps us to define the project scope, and you to act in accordance with your opportunities.</p>\n[/vc_column_text][stm_spacing lg_spacing=\"70\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"50\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Starter\" price=\"Free\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\"]\n<ul>\n 	<li>3 projects</li>\n 	<li>30-day version history</li>\n 	<li>Up to 2 editors</li>\n 	<li>Unlimited cloud storage</li>\n</ul>\n[/stm_pricing_plan][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"72\"][/vc_column][vc_column width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Professional\" price=\"$12\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\" price_suffix=\"/mo\" label=\"Popular\"]\n<ul>\n 	<li>Unlimited projects</li>\n 	<li>Unlimited version history</li>\n 	<li>Custom file/user permissions</li>\n 	<li>Invite-only private projects</li>\n</ul>\n[/stm_pricing_plan][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column][vc_column width=\"1/3\"][stm_pricing_plan style=\"style_2\" title=\"Organization\" price=\"$24\" subtitle=\"for up to 2 editors  and 3 projects\" link=\"url:%23|title:Get%20now||\" price_suffix=\"/mo\"]\n<ul>\n 	<li>Org-wide design systems</li>\n 	<li>Centralized teams</li>\n 	<li>Private plugins</li>\n 	<li>Plugin administration</li>\n</ul>\n[/stm_pricing_plan][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"80\" sm_spacing=\"70\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]Companies seem to dislike the term ‘turnaround consulting’ because it represents failure. The truth is that turnaround consulting represents success at realizing the company is going in the wrong direction. The only time the company fails is when it is not possible to do a turnaround anymore. We help companies pivot into more profitable directions where they can expand and grow. It is inevitable that companies will end up making a few mistakes; we help them correct these mistakes.\n\nWe help companies turnaround their non-profitable ventures into something that benefits them. Our specialty lies in understanding what makes a company special and what makes it tick.[/vc_column_text][vc_column_text]\n<blockquote>Consulting WP – we help companies assess their skills and choose a new direction which utilizes the talents of the team and resources most productively.</blockquote>\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"0\" xs_spacing=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"6474\" img_size=\"360x360\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"40\" md_spacing=\"20\" sm_spacing=\"10\" xs_spacing=\"0\"][/vc_column][/vc_row]', 'Cost Calculator', '', 'publish', 'closed', 'closed', '', 'cost-calculator', '', '', '2019-12-10 05:14:51', '2019-12-10 05:14:51', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6333', 0, 'page', '', 0),
(6337, 1, '2019-09-10 13:12:30', '2019-09-10 12:12:30', '', 'Photography', '', 'publish', 'closed', 'closed', '', 'photography', '', '', '2019-09-10 13:12:30', '2019-09-10 12:12:30', '', 0, 'http://ulisting.loc/cost-calc/photography/', 0, 'cost-calc', '', 0),
(6474, 1, '2015-12-21 10:13:31', '2015-12-21 10:13:31', '', 'placeholder-5', '', 'inherit', 'open', 'closed', '', 'placeholder', '', '', '2015-12-21 10:13:31', '2015-12-21 10:13:31', '', 0, 'http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif', 0, 'attachment', 'image/gif', 0),
(6475, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'Pages', '', 'publish', 'closed', 'closed', '', 'pages', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/pages/', 55, 'nav_menu_item', '', 0),
(6476, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'News', '', 'publish', 'closed', 'closed', '', 'news', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/news/', 43, 'nav_menu_item', '', 0),
(6477, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'List view', '', 'publish', 'closed', 'closed', '', 'list-view', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/list-view/', 44, 'nav_menu_item', '', 0),
(6478, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'Grid view', '', 'publish', 'closed', 'closed', '', 'grid-view', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/grid-view/', 46, 'nav_menu_item', '', 0),
(6479, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'Example Pages', '', 'publish', 'closed', 'closed', '', 'example-pages', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/example-pages/', 58, 'nav_menu_item', '', 0),
(6480, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'Extra Pages', '', 'publish', 'closed', 'closed', '', 'extra-pages', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/extra-pages/', 66, 'nav_menu_item', '', 0),
(6481, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', '404 Page', '', 'publish', 'closed', 'closed', '', '404-page', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/404-page/', 63, 'nav_menu_item', '', 0),
(6482, 1, '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 'Contacts1', '', 'publish', 'closed', 'closed', '', 'contacts1', '', '', '2021-04-05 12:56:07', '2021-04-05 12:56:07', '', 0, 'http://qualstream.net/2021/04/05/contacts1/', 75, 'nav_menu_item', '', 0),
(6483, 1, '2015-12-15 07:37:33', '2015-12-15 07:37:33', '[vc_row css=\".vc_custom_1451991003825{margin-bottom: 100px !important;}\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][rev_slider alias=\"about_us_slider\"][vc_column_text css=\".vc_custom_1482917865154{margin-top: 40px !important;}\"]\n<h2>Company overview</h2>\nConsulting WP is a global consulting powerhouse. We began our operations a few decades ago and have grown due to excellent relationships with our clients. We started out small, with just a few people and a small office, but today we have offices in multiple countries with hundreds of people working inside them.\n\nWe achieved our success because of how successfully we integrate with our clients. One complaint many people have about consultants is that they can be disruptive. Employees fear outside consultants coming in and destroying the workflow. Our clients face no such issues.[/vc_column_text][vc_column_text css=\".vc_custom_1455883727307{margin-bottom: 34px !important;}\"]\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1453471528699{margin-bottom: 15px !important;}\" el_class=\"no_stripe\"][vc_column_text]Our renowned coaching programs will allow you to:\n<ul>\n 	<li>Work fewer hours — and make more money</li>\n 	<li>Attract and retain quality, high-paying customers</li>\n 	<li>Manage your time so you’ll get more done in less time</li>\n 	<li>Hone sharp leadership skills to manage your team</li>\n 	<li>Cut expenses without sacrificing quality</li>\n 	<li>Automate your business, so you can leave for days, weeks, or even months at a time</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"How we work\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1453471549250{margin-bottom: 28px !important;}\" el_class=\"no_stripe\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5588\" img_size=\"395x264\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Company overview', '', 'publish', 'closed', 'closed', '', 'company-overview', '', '', '2015-12-15 07:37:33', '2015-12-15 07:37:33', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=9', 0, 'page', '', 0),
(6484, 1, '2015-12-15 07:37:48', '2015-12-15 07:37:48', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDQ3NS44MzcwNDQ2Mjc0MzA5JTIxMmQ3OC40NDg1NjgwODQ1NDc1OSUyMTNkMTcuNDI2MzUzNjgyMDY5NiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNiY2I5MGNiM2EwZjMxODElMjUzQTB4ODgzM2Y3ZmY4NzFmZDkyZiUyMTJzU01SJTI1MjBIb2xkaW5ncyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjIzNTg1Nzk5MzQ2JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"SMR Towers, Road No 3, Banajarahills, Hyderabad.\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2021-06-13 12:03:49', '2021-06-13 12:03:49', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=11', 0, 'page', '', 0),
(6485, 1, '2015-12-15 07:37:19', '2015-12-15 07:37:19', '', 'News', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2015-12-15 07:37:19', '2015-12-15 07:37:19', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=7', 0, 'page', '', 0),
(6635, 1, '2020-05-07 12:27:17', '2020-05-07 12:27:17', '', 'Business plans', '', 'publish', 'closed', 'closed', '', 'business-plans', '', '', '2020-05-07 12:27:17', '2020-05-07 12:27:17', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6635', 0, 'stm-zoom', '', 0),
(6734, 1, '2020-05-12 04:30:33', '2020-05-12 04:30:33', '', 'Competitive research', '', 'publish', 'closed', 'closed', '', 'competitive-research', '', '', '2020-05-12 04:30:33', '2020-05-12 04:30:33', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6734', 0, 'stm-zoom', '', 0),
(6748, 1, '2020-05-12 12:11:56', '2020-05-12 12:11:56', '', 'Accounting Franchising', '', 'publish', 'closed', 'closed', '', 'accounting-franchising', '', '', '2020-05-12 12:11:56', '2020-05-12 12:11:56', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6748', 0, 'stm-zoom', '', 0),
(6749, 1, '2020-05-12 12:12:30', '2020-05-12 12:12:30', '', 'Economics Finance', '', 'publish', 'closed', 'closed', '', 'economics-finance', '', '', '2020-05-12 12:12:30', '2020-05-12 12:12:30', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6749', 0, 'stm-zoom', '', 0),
(6750, 1, '2020-05-12 12:13:03', '2020-05-12 12:13:03', '', 'How to run your business', '', 'publish', 'closed', 'closed', '', 'how-to-run-your-business', '', '', '2020-05-12 12:13:03', '2020-05-12 12:13:03', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6750', 0, 'stm-zoom', '', 0),
(6785, 1, '2020-05-20 05:20:48', '2020-05-20 05:20:48', '', 'Funding trends', '', 'publish', 'closed', 'closed', '', 'funding-trends', '', '', '2020-05-20 05:20:48', '2020-05-20 05:20:48', '', 0, 'http://consulting.stylemixthemes.com/geneva/?post_type=stm-zoom&amp;p=6785', 0, 'stm-zoom', '', 0),
(6786, 1, '2020-06-13 09:13:27', '2020-06-13 09:13:27', '[vc_row][vc_column][stm_zoom_meeting count=\"6\"][/vc_column][/vc_row]', 'Webinars', '', 'publish', 'closed', 'closed', '', 'webinars', '', '', '2020-06-13 09:13:27', '2020-06-13 09:13:27', '', 0, 'http://consulting.stylemixthemes.com/demo/?page_id=6786', 0, 'page', '', 0),
(6787, 1, '2021-04-05 12:56:26', '2021-04-05 12:56:26', ' ', '', '', 'publish', 'closed', 'closed', '', '6787', '', '', '2021-04-05 12:56:26', '2021-04-05 12:56:26', '', 0, 'http://qualstream.net/2021/04/05/6787/', 1, 'nav_menu_item', '', 0),
(6788, 1, '2021-04-05 12:56:26', '2021-04-05 12:56:26', '', 'Testimonials', '', 'publish', 'closed', 'closed', '', 'testimonials', '', '', '2021-04-05 12:56:26', '2021-04-05 12:56:26', '', 0, 'http://qualstream.net/2021/04/05/testimonials/', 4, 'nav_menu_item', '', 0),
(6789, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6789', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/6789/', 5, 'nav_menu_item', '', 0),
(6790, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/about/', 1, 'nav_menu_item', '', 0),
(6791, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6791', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/6791/', 2, 'nav_menu_item', '', 0),
(6792, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'Contacts', '', 'publish', 'closed', 'closed', '', 'contacts', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/contacts/', 3, 'nav_menu_item', '', 0),
(6793, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6793', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/6793/', 62, 'nav_menu_item', '', 0),
(6794, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'About us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/about-us/', 2, 'nav_menu_item', '', 0),
(6795, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6795', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 0, 'http://qualstream.net/2021/04/05/6795/', 60, 'nav_menu_item', '', 0),
(6796, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6796', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/6796/', 8, 'nav_menu_item', '', 0),
(6797, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6797', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/6797/', 4, 'nav_menu_item', '', 0),
(6798, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'About', '', 'publish', 'closed', 'closed', '', 'about-2', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/about-2/', 3, 'nav_menu_item', '', 0),
(6799, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6799', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/6799/', 3, 'nav_menu_item', '', 0),
(6800, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'Partners', '', 'publish', 'closed', 'closed', '', 'partners', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/partners/', 5, 'nav_menu_item', '', 0),
(6801, 1, '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 'Partners', '', 'publish', 'closed', 'closed', '', 'partners-2', '', '', '2021-04-05 12:56:27', '2021-04-05 12:56:27', '', 6483, 'http://qualstream.net/2021/04/05/partners-2/', 9, 'nav_menu_item', '', 0),
(6802, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6802', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/6802/', 10, 'nav_menu_item', '', 0),
(6803, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6803', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/6803/', 2, 'nav_menu_item', '', 0),
(6804, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6804', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6804/', 1, 'nav_menu_item', '', 0),
(6805, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 'Team list', '', 'publish', 'closed', 'closed', '', 'team-list', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/team-list/', 16, 'nav_menu_item', '', 0),
(6806, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6806', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/6806/', 6, 'nav_menu_item', '', 0),
(6807, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6807', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/6807/', 7, 'nav_menu_item', '', 0),
(6808, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 'Team grid', '', 'publish', 'closed', 'closed', '', 'team-grid', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 6483, 'http://qualstream.net/2021/04/05/team-grid/', 18, 'nav_menu_item', '', 0),
(6809, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 'Contacts', '', 'publish', 'closed', 'closed', '', 'contacts-2', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/contacts-2/', 76, 'nav_menu_item', '', 0),
(6810, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6810', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6810/', 21, 'nav_menu_item', '', 0),
(6811, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6811', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6811/', 1, 'nav_menu_item', '', 0),
(6812, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6812', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6812/', 2, 'nav_menu_item', '', 0),
(6813, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6813', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6813/', 3, 'nav_menu_item', '', 0),
(6814, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6814', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6814/', 4, 'nav_menu_item', '', 0),
(6815, 1, '2021-04-05 12:56:28', '2021-04-05 12:56:28', ' ', '', '', 'publish', 'closed', 'closed', '', '6815', '', '', '2021-04-05 12:56:28', '2021-04-05 12:56:28', '', 0, 'http://qualstream.net/2021/04/05/6815/', 5, 'nav_menu_item', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6816, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6816', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6816/', 6, 'nav_menu_item', '', 0),
(6817, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6817', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6817/', 7, 'nav_menu_item', '', 0),
(6818, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6818', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6818/', 8, 'nav_menu_item', '', 0),
(6819, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Service Layout 1', '', 'publish', 'closed', 'closed', '', 'service-layout-1', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/service-layout-1/', 27, 'nav_menu_item', '', 0),
(6820, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Service Layout  2', '', 'publish', 'closed', 'closed', '', 'service-layout-2', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/service-layout-2/', 28, 'nav_menu_item', '', 0),
(6821, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Service Layout 3', '', 'publish', 'closed', 'closed', '', 'service-layout-3', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/service-layout-3/', 29, 'nav_menu_item', '', 0),
(6822, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Cases grid', '', 'publish', 'closed', 'closed', '', 'cases-grid', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/cases-grid/', 33, 'nav_menu_item', '', 0),
(6823, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Cases with filter', '', 'publish', 'closed', 'closed', '', 'cases-with-filter', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/cases-with-filter/', 37, 'nav_menu_item', '', 0),
(6824, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6824', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6824/', 1, 'nav_menu_item', '', 0),
(6825, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6825', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6825/', 2, 'nav_menu_item', '', 0),
(6826, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', ' ', '', '', 'publish', 'closed', 'closed', '', '6826', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/6826/', 5, 'nav_menu_item', '', 0),
(6827, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Single case layout 1', '', 'publish', 'closed', 'closed', '', 'single-case-layout-1', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/single-case-layout-1/', 38, 'nav_menu_item', '', 0),
(6828, 1, '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 'Single case layout 2', '', 'publish', 'closed', 'closed', '', 'single-case-layout-2', '', '', '2021-04-05 12:56:29', '2021-04-05 12:56:29', '', 0, 'http://qualstream.net/2021/04/05/single-case-layout-2/', 39, 'nav_menu_item', '', 0),
(6829, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Vacancy page', '', 'publish', 'closed', 'closed', '', 'vacancy-page', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/vacancy-page/', 13, 'nav_menu_item', '', 0),
(6830, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Our team', '', 'publish', 'closed', 'closed', '', 'our-team', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 6483, 'http://qualstream.net/2021/04/05/our-team/', 15, 'nav_menu_item', '', 0),
(6831, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Team member', '', 'publish', 'closed', 'closed', '', 'team-member', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/team-member/', 19, 'nav_menu_item', '', 0),
(6832, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Jobs listing', '', 'publish', 'closed', 'closed', '', 'jobs-listing', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 6483, 'http://qualstream.net/2021/04/05/jobs-listing/', 11, 'nav_menu_item', '', 0),
(6833, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Services Grid', '', 'publish', 'closed', 'closed', '', 'services-grid', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/services-grid/', 22, 'nav_menu_item', '', 0),
(6834, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', ' ', '', '', 'publish', 'closed', 'closed', '', '6834', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/6834/', 59, 'nav_menu_item', '', 0),
(6835, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', ' ', '', '', 'publish', 'closed', 'closed', '', '6835', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/6835/', 6, 'nav_menu_item', '', 0),
(6836, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', ' ', '', '', 'publish', 'closed', 'closed', '', '6836', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 6483, 'http://qualstream.net/2021/04/05/6836/', 7, 'nav_menu_item', '', 0),
(6837, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Our team', '', 'publish', 'closed', 'closed', '', 'our-team-2', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 6483, 'http://qualstream.net/2021/04/05/our-team-2/', 8, 'nav_menu_item', '', 0),
(6838, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', ' ', '', '', 'publish', 'closed', 'closed', '', '6838', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/6838/', 9, 'nav_menu_item', '', 0),
(6839, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', ' ', '', '', 'publish', 'closed', 'closed', '', '6839', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/6839/', 61, 'nav_menu_item', '', 0),
(6840, 1, '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 'Event Classic', '', 'publish', 'closed', 'closed', '', 'event-classic', '', '', '2021-04-05 12:56:30', '2021-04-05 12:56:30', '', 0, 'http://qualstream.net/2021/04/05/event-classic/', 69, 'nav_menu_item', '', 0),
(6841, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Event Grid', '', 'publish', 'closed', 'closed', '', 'event-grid', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/event-grid/', 68, 'nav_menu_item', '', 0),
(6842, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Event Modern', '', 'publish', 'closed', 'closed', '', 'event-modern', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/event-modern/', 70, 'nav_menu_item', '', 0),
(6843, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Appointment', '', 'publish', 'closed', 'closed', '', 'appointment', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/appointment/', 71, 'nav_menu_item', '', 0),
(6844, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', ' ', '', '', 'publish', 'closed', 'closed', '', '6844', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/6844/', 5, 'nav_menu_item', '', 0),
(6845, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', ' ', '', '', 'publish', 'closed', 'closed', '', '6845', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/6845/', 6, 'nav_menu_item', '', 0),
(6846, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'About Layout 1', '', 'publish', 'closed', 'closed', '', 'about-layout-1', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/about-layout-1/', 4, 'nav_menu_item', '', 0),
(6847, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', ' ', '', '', 'publish', 'closed', 'closed', '', '6847', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/6847/', 50, 'nav_menu_item', '', 0),
(6848, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Portfolio Single One', '', 'publish', 'closed', 'closed', '', 'portfolio-single-one', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/portfolio-single-one/', 52, 'nav_menu_item', '', 0),
(6849, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Portfolio Single Two', '', 'publish', 'closed', 'closed', '', 'portfolio-single-two', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/portfolio-single-two/', 53, 'nav_menu_item', '', 0),
(6850, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 'Portfolio Single Three', '', 'publish', 'closed', 'closed', '', 'portfolio-single-three', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/portfolio-single-three/', 54, 'nav_menu_item', '', 0),
(6851, 1, '2021-04-05 12:56:31', '2021-04-05 12:56:31', ' ', '', '', 'publish', 'closed', 'closed', '', '6851', '', '', '2021-04-05 12:56:31', '2021-04-05 12:56:31', '', 0, 'http://qualstream.net/2021/04/05/6851/', 81, 'nav_menu_item', '', 0),
(6852, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6852', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/6852/', 80, 'nav_menu_item', '', 0),
(6853, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6853', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/6853/', 79, 'nav_menu_item', '', 0),
(6854, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6854', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/6854/', 78, 'nav_menu_item', '', 0),
(6855, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 'Contact one', '', 'publish', 'closed', 'closed', '', 'contact-one', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/contact-one/', 77, 'nav_menu_item', '', 0),
(6856, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 'Cases', '', 'publish', 'closed', 'closed', '', 'cases', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/cases/', 32, 'nav_menu_item', '', 0),
(6857, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6857', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/6857/', 26, 'nav_menu_item', '', 0),
(6858, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6858', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/6858/', 56, 'nav_menu_item', '', 0),
(6859, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 'Company overview1', '', 'publish', 'closed', 'closed', '', 'company-overview1', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/company-overview1/', 57, 'nav_menu_item', '', 0),
(6860, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 'Contacts', '', 'publish', 'closed', 'closed', '', 'contacts-3', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 0, 'http://qualstream.net/2021/04/05/contacts-3/', 74, 'nav_menu_item', '', 0),
(6861, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', ' ', '', '', 'publish', 'closed', 'closed', '', '6861', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 834, 'http://qualstream.net/2021/04/05/6861/', 67, 'nav_menu_item', '', 0),
(6862, 1, '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 'Partners', '', 'publish', 'closed', 'closed', '', 'partners-3', '', '', '2021-04-05 12:56:32', '2021-04-05 12:56:32', '', 6483, 'http://qualstream.net/2021/04/05/partners-3/', 10, 'nav_menu_item', '', 0),
(6863, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6863', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6863/', 7, 'nav_menu_item', '', 0),
(6864, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 'Cases grid 2', '', 'publish', 'closed', 'closed', '', 'cases-grid-2', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/cases-grid-2/', 34, 'nav_menu_item', '', 0),
(6865, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6865', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6865/', 36, 'nav_menu_item', '', 0),
(6866, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6866', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6866/', 72, 'nav_menu_item', '', 0),
(6867, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6867', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6867/', 73, 'nav_menu_item', '', 0),
(6868, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6868', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6868/', 20, 'nav_menu_item', '', 0),
(6869, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6869', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6869/', 12, 'nav_menu_item', '', 0),
(6870, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 'Grid view 2', '', 'publish', 'closed', 'closed', '', 'grid-view-2', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/grid-view-2/', 47, 'nav_menu_item', '', 0),
(6871, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 'List view 2', '', 'publish', 'closed', 'closed', '', 'list-view-2', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/list-view-2/', 45, 'nav_menu_item', '', 0),
(6872, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', ' ', '', '', 'publish', 'closed', 'closed', '', '6872', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/6872/', 17, 'nav_menu_item', '', 0),
(6873, 1, '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 'Cases grid 3', '', 'publish', 'closed', 'closed', '', 'cases-grid-3', '', '', '2021-04-05 12:56:33', '2021-04-05 12:56:33', '', 0, 'http://qualstream.net/2021/04/05/cases-grid-3/', 35, 'nav_menu_item', '', 0),
(6874, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', ' ', '', '', 'publish', 'closed', 'closed', '', '6874', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/6874/', 30, 'nav_menu_item', '', 0),
(6875, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', ' ', '', '', 'publish', 'closed', 'closed', '', '6875', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/6875/', 31, 'nav_menu_item', '', 0),
(6876, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', ' ', '', '', 'publish', 'closed', 'closed', '', '6876', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/6876/', 23, 'nav_menu_item', '', 0),
(6877, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', ' ', '', '', 'publish', 'closed', 'closed', '', '6877', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/6877/', 24, 'nav_menu_item', '', 0),
(6878, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', ' ', '', '', 'publish', 'closed', 'closed', '', '6878', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/6878/', 25, 'nav_menu_item', '', 0),
(6879, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 'Single post 2', '', 'publish', 'closed', 'closed', '', 'single-post-2', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/single-post-2/', 49, 'nav_menu_item', '', 0),
(6880, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 'Single post', '', 'publish', 'closed', 'closed', '', 'single-post', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/single-post/', 48, 'nav_menu_item', '', 0),
(6881, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 'Portfolio style 2', '', 'publish', 'closed', 'closed', '', 'portfolio-style-2', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/portfolio-style-2/', 51, 'nav_menu_item', '', 0),
(6882, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 'Vacancy page 2', '', 'publish', 'closed', 'closed', '', 'vacancy-page-2', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/vacancy-page-2/', 14, 'nav_menu_item', '', 0),
(6883, 1, '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 'Single case layout 5', '', 'publish', 'closed', 'closed', '', 'single-case-layout-5', '', '', '2021-04-05 12:56:34', '2021-04-05 12:56:34', '', 0, 'http://qualstream.net/2021/04/05/single-case-layout-5/', 42, 'nav_menu_item', '', 0),
(6884, 1, '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 'Single case layout 4', '', 'publish', 'closed', 'closed', '', 'single-case-layout-4', '', '', '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 0, 'http://qualstream.net/2021/04/05/single-case-layout-4/', 41, 'nav_menu_item', '', 0),
(6885, 1, '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 'Single case layout 3', '', 'publish', 'closed', 'closed', '', 'single-case-layout-3', '', '', '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 0, 'http://qualstream.net/2021/04/05/single-case-layout-3/', 40, 'nav_menu_item', '', 0),
(6886, 1, '2021-04-05 12:56:35', '2021-04-05 12:56:35', ' ', '', '', 'publish', 'closed', 'closed', '', '6886', '', '', '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 0, 'http://qualstream.net/2021/04/05/6886/', 64, 'nav_menu_item', '', 0),
(6887, 1, '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 'Webinar Sigle', '', 'publish', 'closed', 'closed', '', 'webinar-sigle', '', '', '2021-04-05 12:56:35', '2021-04-05 12:56:35', '', 0, 'http://qualstream.net/2021/04/05/webinar-sigle/', 65, 'nav_menu_item', '', 0),
(6888, 1, '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 'demo_slide_1.jpg', '', 'inherit', 'closed', 'closed', '', 'demo-slide-1-jpg', '', '', '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/demo_slide_1.jpg', 0, 'attachment', 'image/jpeg', 0),
(6889, 1, '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 'demo_slide_2.jpg', '', 'inherit', 'closed', 'closed', '', 'demo-slide-2-jpg', '', '', '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/demo_slide_2.jpg', 0, 'attachment', 'image/jpeg', 0),
(6890, 1, '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 'macbook.png', '', 'inherit', 'closed', 'closed', '', 'macbook-png', '', '', '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/about_us_slider/macbook.png', 0, 'attachment', 'image/png', 0),
(6891, 1, '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 'about.jpg', '', 'inherit', 'closed', 'closed', '', 'about-jpg', '', '', '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/about_us_slider/about.jpg', 0, 'attachment', 'image/jpeg', 0),
(6892, 1, '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 'services_slider.png', '', 'inherit', 'closed', 'closed', '', 'services-slider-png', '', '', '2021-04-05 12:56:38', '2021-04-05 12:56:38', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/service_slider/services_slider.png', 0, 'attachment', 'image/png', 0),
(6893, 1, '2021-04-05 12:56:39', '2021-04-05 12:56:39', '', 'service.jpg', '', 'inherit', 'closed', 'closed', '', 'service-jpg', '', '', '2021-04-05 12:56:39', '2021-04-05 12:56:39', '', 0, 'http://qualstream.net/wp-content/uploads/revslider/service_slider/service.jpg', 0, 'attachment', 'image/jpeg', 0),
(6894, 1, '2021-04-05 13:00:48', '2021-04-05 13:00:48', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2021-06-13 11:55:53', '2021-06-13 11:55:53', '', 0, 'http://qualstream.net/?elementor_library=default-kit', 0, 'elementor_library', '', 0),
(6895, 1, '2021-04-22 07:30:05', '2021-04-05 13:24:27', ' ', '', '', 'publish', 'closed', 'closed', '', '6895', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'http://qualstream.net/?p=6895', 1, 'nav_menu_item', '', 0),
(6896, 1, '2021-04-22 07:30:05', '2021-04-05 13:24:27', '', 'Our Services', '', 'publish', 'closed', 'closed', '', 'our-services', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'http://qualstream.net/?p=6896', 2, 'nav_menu_item', '', 0),
(6897, 1, '2021-04-22 07:30:05', '2021-04-05 13:24:27', '', 'Industries', '', 'publish', 'closed', 'closed', '', 'industries', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'http://qualstream.net/?p=6897', 10, 'nav_menu_item', '', 0),
(6899, 1, '2021-04-22 07:30:05', '2021-04-05 13:24:27', '', 'Job Posting', '', 'publish', 'closed', 'closed', '', 'job-posting', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'http://qualstream.net/?p=6899', 21, 'nav_menu_item', '', 0),
(6901, 1, '2021-04-05 14:06:55', '2021-04-05 14:06:55', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6894-revision-v1', '', '', '2021-04-05 14:06:55', '2021-04-05 14:06:55', '', 6894, 'http://qualstream.net/?p=6901', 0, 'revision', '', 0),
(6902, 1, '2021-04-05 14:13:07', '2021-04-05 14:13:07', '', 'qualstream-logo-website', '', 'inherit', 'open', 'closed', '', 'qualstream-logo-website', '', '', '2021-04-05 14:13:07', '2021-04-05 14:13:07', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/qualstream-logo-website.png', 0, 'attachment', 'image/png', 0),
(6905, 1, '2021-04-05 15:10:30', '2021-04-05 15:10:30', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540142522{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540174603{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\r\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-05 15:10:30', '2021-04-05 15:10:30', '', 6484, 'https://qualstream.net/?p=6905', 0, 'revision', '', 0),
(6906, 1, '2021-04-05 15:23:27', '2021-04-05 15:23:27', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540174603{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\r\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-05 15:23:27', '2021-04-05 15:23:27', '', 6484, 'https://qualstream.net/?p=6906', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6907, 1, '2021-04-05 15:25:53', '2021-04-05 15:25:53', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540193035{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\r\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-05 15:25:53', '2021-04-05 15:25:53', '', 6484, 'https://qualstream.net/?p=6907', 0, 'revision', '', 0),
(6908, 1, '2021-04-05 15:34:33', '2021-04-05 15:34:33', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1010 Avenue of the Moon<br />\r\nNew York, NY 10018 US.\" phone=\"+1 628 123 4000\" email=\"brandon@consulting.com\" css=\".vc_custom_1559540211139{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" google_plus=\"#\" skype=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\r\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-05 15:34:33', '2021-04-05 15:34:33', '', 6484, 'https://qualstream.net/?p=6908', 0, 'revision', '', 0),
(6909, 1, '2021-04-05 15:36:12', '2021-04-05 15:36:12', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"5588\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\r\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-05 15:36:12', '2021-04-05 15:36:12', '', 6484, 'https://qualstream.net/?p=6909', 0, 'revision', '', 0),
(6910, 1, '2021-04-06 06:37:16', '2021-04-06 06:37:16', '', 'hyderabad', '', 'inherit', 'open', 'closed', '', 'hyderabad', '', '', '2021-04-06 06:37:16', '2021-04-06 06:37:16', '', 6484, 'https://qualstream.net/wp-content/uploads/2021/04/hyderabad.jpg', 0, 'attachment', 'image/jpeg', 0),
(6911, 1, '2021-04-06 06:37:19', '2021-04-06 06:37:19', '', 'noida', '', 'inherit', 'open', 'closed', '', 'noida', '', '', '2021-04-06 06:37:19', '2021-04-06 06:37:19', '', 6484, 'https://qualstream.net/wp-content/uploads/2021/04/noida.jpg', 0, 'attachment', 'image/jpeg', 0),
(6912, 1, '2021-04-06 06:37:21', '2021-04-06 06:37:21', '', 'uk', '', 'inherit', 'open', 'closed', '', 'uk', '', '', '2021-04-06 06:37:21', '2021-04-06 06:37:21', '', 6484, 'https://qualstream.net/wp-content/uploads/2021/04/uk.jpg', 0, 'attachment', 'image/jpeg', 0),
(6913, 1, '2021-04-06 06:37:22', '2021-04-06 06:37:22', '', 'usa', '', 'inherit', 'open', 'closed', '', 'usa', '', '', '2021-04-06 06:37:22', '2021-04-06 06:37:22', '', 6484, 'https://qualstream.net/wp-content/uploads/2021/04/usa.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6914, 1, '2021-04-06 06:39:52', '2021-04-06 06:39:52', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-06 06:39:52', '2021-04-06 06:39:52', '', 6484, 'https://qualstream.net/?p=6914', 0, 'revision', '', 0),
(6915, 1, '2021-04-06 06:51:04', '2021-04-06 06:51:04', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-06 06:51:04', '2021-04-06 06:51:04', '', 6484, 'https://qualstream.net/?p=6915', 0, 'revision', '', 0),
(6916, 1, '2021-04-22 07:30:05', '2021-04-06 08:15:06', ' ', '', '', 'publish', 'closed', 'closed', '', '6916', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=6916', 22, 'nav_menu_item', '', 0),
(6917, 1, '2021-04-06 09:39:50', '2021-04-06 09:39:50', '', 'slider-1', '', 'inherit', 'open', 'closed', '', 'slider-1', '', '', '2021-04-06 09:39:50', '2021-04-06 09:39:50', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/slider-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(6919, 1, '2021-04-06 09:42:15', '2021-04-06 09:42:15', '', 'slider-2', '', 'inherit', 'open', 'closed', '', 'slider-2-2', '', '', '2021-04-06 09:42:15', '2021-04-06 09:42:15', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/slider-2-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(6920, 1, '2021-04-06 09:57:59', '0000-00-00 00:00:00', '[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Adipiscing elit, sed do eiusmod tempor inciunt ut labore et dolore magna liqua.abore et dolore incididunt ut labore et dolore magna liqua. abore et dolore</p>\n[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-rocket\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Investment Management\"]\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Adipiscing elit, sed do eiusmod tempor inciunt ut labore et dolore magna liqua.abore et dolore incididunt ut labore et dolore magna liqua. abore et dolore</p>\n[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-fortress\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Estate Planning\"]\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Adipiscing elit, sed do eiusmod tempor inciunt ut labore et dolore magna liqua.abore et dolore incididunt ut labore et dolore magna liqua. abore et dolore</p>\n[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559553812334{background: #fde428 url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1559553869517{margin-bottom: 0px !important;}\"]\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\">Grow <strong style=\"color: #6c98e1;\">your wealth</strong> so you can live the life you want</h3>\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Buy Consulting\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1559208975584{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"Our expertise is your gain\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1559280090332{margin-bottom: 28px !important;}\"]\n<p style=\"line-height: 30px;\"><span style=\"color: #777777;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis Duis aute irure dolor in reprehenderit in voluptate velit esse cillum nulla pariatur.</span></p>\n[/vc_column_text][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Customer%20satisfaction%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Performance%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Experience%22%2C%22value%22%3A%2270%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%5D\" bgcolor=\"bar_blue\" units=\"%\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n 	<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n 	<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n 	<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-04-06 09:57:59', '0000-00-00 00:00:00', '', 0, 'https://qualstream.net/?page_id=6920', 0, 'page', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6921, 1, '2021-04-06 10:12:05', '2021-04-06 10:12:05', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559553812334{background: #fde428 url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1559553869517{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\">Grow <strong style=\"color: #6c98e1;\">your wealth</strong> so you can live the life you want</h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Buy Consulting\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1559208975584{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"Our expertise is your gain\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1559280090332{margin-bottom: 28px !important;}\"]</p>\n<p style=\"line-height: 30px;\"><span style=\"color: #777777;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis Duis aute irure dolor in reprehenderit in voluptate velit esse cillum nulla pariatur.</span></p>\n<p>[/vc_column_text][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Customer%20satisfaction%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Performance%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Experience%22%2C%22value%22%3A%2270%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%5D\" bgcolor=\"bar_blue\" units=\"%\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:12:05', '2021-04-06 10:12:05', '', 1071, 'https://qualstream.net/?p=6921', 0, 'revision', '', 0),
(6922, 1, '2021-04-06 10:19:55', '2021-04-06 10:19:55', '', 'mid-banner', '', 'inherit', 'open', 'closed', '', 'mid-banner', '', '', '2021-04-06 10:19:55', '2021-04-06 10:19:55', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(6923, 1, '2021-04-06 10:20:27', '2021-04-06 10:20:27', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1559553869517{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\">Grow <strong style=\"color: #6c98e1;\">your wealth</strong> so you can live the life you want</h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Buy Consulting\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1559208975584{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"Our expertise is your gain\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1559280090332{margin-bottom: 28px !important;}\"]</p>\n<p style=\"line-height: 30px;\"><span style=\"color: #777777;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis Duis aute irure dolor in reprehenderit in voluptate velit esse cillum nulla pariatur.</span></p>\n<p>[/vc_column_text][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Customer%20satisfaction%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Performance%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Experience%22%2C%22value%22%3A%2270%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%5D\" bgcolor=\"bar_blue\" units=\"%\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:20:27', '2021-04-06 10:20:27', '', 1071, 'https://qualstream.net/?p=6923', 0, 'revision', '', 0),
(6924, 1, '2021-04-06 10:23:16', '2021-04-06 10:23:16', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Buy Consulting\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1559208975584{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"Our expertise is your gain\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1559280090332{margin-bottom: 28px !important;}\"]</p>\n<p style=\"line-height: 30px;\"><span style=\"color: #777777;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis Duis aute irure dolor in reprehenderit in voluptate velit esse cillum nulla pariatur.</span></p>\n<p>[/vc_column_text][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Customer%20satisfaction%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Performance%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Experience%22%2C%22value%22%3A%2270%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%5D\" bgcolor=\"bar_blue\" units=\"%\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:23:16', '2021-04-06 10:23:16', '', 1071, 'https://qualstream.net/?p=6924', 0, 'revision', '', 0),
(6926, 1, '2021-04-06 10:24:20', '2021-04-06 10:24:20', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n.stm_news .news_list li .date:before {\n color: #eb900d;\n}\n\n.wpcf7 form .wpcf7-response-output {\n       display: none;\n}\n\n.stm-amsterdam-arrow {\n    color: #eb900d;\n}\n\n\n\n\n', 'consulting', '', 'publish', 'closed', 'closed', '', 'consulting', '', '', '2021-04-22 07:32:15', '2021-04-22 07:32:15', '', 0, 'https://qualstream.net/2021/04/06/consulting/', 0, 'custom_css', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6927, 1, '2021-04-06 10:24:20', '2021-04-06 10:24:20', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 10:24:20', '2021-04-06 10:24:20', '', 6926, 'https://qualstream.net/?p=6927', 0, 'revision', '', 0),
(6929, 1, '2021-04-06 10:24:59', '2021-04-06 10:24:59', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 10:24:59', '2021-04-06 10:24:59', '', 6926, 'https://qualstream.net/?p=6929', 0, 'revision', '', 0),
(6930, 1, '2021-04-06 10:25:17', '2021-04-06 10:25:17', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"Our expertise is your gain\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559279507556{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1559280090332{margin-bottom: 28px !important;}\"]</p>\n<p style=\"line-height: 30px;\"><span style=\"color: #777777;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis Duis aute irure dolor in reprehenderit in voluptate velit esse cillum nulla pariatur.</span></p>\n<p>[/vc_column_text][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Customer%20satisfaction%22%2C%22value%22%3A%2290%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Performance%22%2C%22value%22%3A%2280%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%2C%7B%22label%22%3A%22Experience%22%2C%22value%22%3A%2270%22%2C%22color%22%3A%22custom%22%2C%22customcolor%22%3A%22%236c98e1%22%2C%22customtxtcolor%22%3A%22%231e1c1b%22%7D%5D\" bgcolor=\"bar_blue\" units=\"%\"][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:25:17', '2021-04-06 10:25:17', '', 1071, 'https://qualstream.net/?p=6930', 0, 'revision', '', 0),
(6931, 1, '2021-04-06 10:29:43', '2021-04-06 10:29:43', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" align=\"center\" size=\"493\" height_size=\"406\" image=\"5449\" img_size=\"720x560\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:29:43', '2021-04-06 10:29:43', '', 1071, 'https://qualstream.net/?p=6931', 0, 'revision', '', 0),
(6932, 1, '2021-04-06 10:36:23', '2021-04-06 10:36:23', '', 'side-image', '', 'inherit', 'open', 'closed', '', 'side-image', '', '', '2021-04-06 10:36:23', '2021-04-06 10:36:23', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/side-image.jpg', 0, 'attachment', 'image/jpeg', 0),
(6933, 1, '2021-04-06 10:37:23', '2021-04-06 10:37:23', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"<mark>Leading the way</mark> in Building &amp; Civil Construction forever\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:37:23', '2021-04-06 10:37:23', '', 1071, 'https://qualstream.net/?p=6933', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6934, 1, '2021-04-06 10:39:40', '2021-04-06 10:39:40', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1559283004167{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:39:40', '2021-04-06 10:39:40', '', 1071, 'https://qualstream.net/?p=6934', 0, 'revision', '', 0),
(6936, 1, '2021-04-06 10:40:12', '2021-04-06 10:40:12', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 10:40:12', '2021-04-06 10:40:12', '', 6926, 'https://qualstream.net/?p=6936', 0, 'revision', '', 0),
(6938, 1, '2021-04-06 10:40:48', '2021-04-06 10:40:48', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 10:40:48', '2021-04-06 10:40:48', '', 6926, 'https://qualstream.net/?p=6938', 0, 'revision', '', 0),
(6940, 1, '2021-04-06 10:41:07', '2021-04-06 10:41:07', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 10:41:07', '2021-04-06 10:41:07', '', 6926, 'https://qualstream.net/?p=6940', 0, 'revision', '', 0),
(6941, 1, '2021-04-06 10:47:14', '2021-04-06 10:47:14', '', 'middle-banner', '', 'inherit', 'open', 'closed', '', 'middle-banner', '', '', '2021-04-06 10:47:14', '2021-04-06 10:47:14', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(6942, 1, '2021-04-06 10:47:28', '2021-04-06 10:47:28', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1559293816714{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:47:28', '2021-04-06 10:47:28', '', 1071, 'https://qualstream.net/?p=6942', 0, 'revision', '', 0),
(6943, 1, '2021-04-06 10:48:44', '2021-04-06 10:48:44', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1559304798251{background: #002e5b url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1559304180275{margin-bottom: 0px !important;}\"]</p>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Commitments (Integrity, Performance and Excellence)</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">Integrity: trust is at the foundation of our relationships with our customers and our suppliers</span></li>\n<li><span style=\"color: #ffffff;\">Performance and excellence: we value high quality performance and aim for excellence in all our transactions</span></li>\n</ul>\n<h6 class=\"no_stripe\"><span style=\"color: #ffffff;\">Quality and value of services</span></h6>\n<ul>\n<li><span style=\"color: #ffffff;\">We bring value through quality of our services and our competitively priced products</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"5588,5588,5588,5588,5588\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 10:48:44', '2021-04-06 10:48:44', '', 1071, 'https://qualstream.net/?p=6943', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6944, 1, '2021-04-06 10:53:10', '2021-04-06 10:53:10', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_spacing lg_spacing=\"6\" md_spacing=\"6\" sm_spacing=\"6\" xs_spacing=\"6\"][vc_single_image source=\"featured_image\" img_size=\"1130x450\"][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"50\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_post_about_author style=\"style_2\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\" css=\".vc_custom_1576127026730{padding-right: 45px !important;}\"][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_tags][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_share_buttons][/vc_column][/vc_row]', 'Cloud and Infrastructure service', '                Supported by a robust sales force and tight cost controls, Pharm Ltd. experienced sustained double-digit growth over a number of years, only to find that their supply chain struggled to keep pace.', 'inherit', 'closed', 'closed', '', '738-autosave-v1', '', '', '2021-04-06 10:53:10', '2021-04-06 10:53:10', '', 738, 'https://qualstream.net/?p=6944', 0, 'revision', '', 0),
(6945, 1, '2021-04-06 10:53:57', '2021-04-06 10:53:57', '', 'infrastructure', '', 'inherit', 'open', 'closed', '', 'infrastructure', '', '', '2021-04-06 10:53:57', '2021-04-06 10:53:57', '', 738, 'https://qualstream.net/wp-content/uploads/2019/12/infrastructure.jpg', 0, 'attachment', 'image/jpeg', 0),
(6946, 1, '2021-04-06 10:54:05', '2021-04-06 10:54:05', '[vc_row][vc_column][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_spacing lg_spacing=\"6\" md_spacing=\"6\" sm_spacing=\"6\" xs_spacing=\"6\"][vc_single_image source=\"featured_image\" img_size=\"1130x450\"][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"50\" xs_spacing=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_post_about_author style=\"style_2\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\" css=\".vc_custom_1576127026730{padding-right: 45px !important;}\"][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_tags][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/6\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_share_buttons][/vc_column][/vc_row]', 'Cloud and Infrastructure service', '                Supported by a robust sales force and tight cost controls, Pharm Ltd. experienced sustained double-digit growth over a number of years, only to find that their supply chain struggled to keep pace.', 'inherit', 'closed', 'closed', '', '738-revision-v1', '', '', '2021-04-06 10:54:05', '2021-04-06 10:54:05', '', 738, 'https://qualstream.net/?p=6946', 0, 'revision', '', 0),
(6947, 1, '2021-04-06 11:05:40', '2021-04-06 11:05:40', '', 'application-development', '', 'inherit', 'open', 'closed', '', 'application-development', '', '', '2021-04-06 11:05:40', '2021-04-06 11:05:40', '', 1, 'https://qualstream.net/wp-content/uploads/2021/04/application-development.jpg', 0, 'attachment', 'image/jpeg', 0),
(6948, 1, '2021-04-06 11:05:49', '2021-04-06 11:05:49', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Application development and Maintenance', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2021-04-06 11:05:49', '2021-04-06 11:05:49', '', 1, 'https://qualstream.net/?p=6948', 0, 'revision', '', 0),
(6949, 1, '2021-04-06 11:06:41', '2021-04-06 11:06:41', '', 'staffing', '', 'inherit', 'open', 'closed', '', 'staffing', '', '', '2021-04-06 11:06:41', '2021-04-06 11:06:41', '', 2202, 'https://qualstream.net/wp-content/uploads/2018/04/staffing.jpg', 0, 'attachment', 'image/jpeg', 0),
(6951, 1, '2021-04-06 11:07:56', '2021-04-06 11:07:56', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392383562{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Staffing', 'Bring to the table win-win survival strategies to ensure proactive domination.', 'inherit', 'closed', 'closed', '', '2202-autosave-v1', '', '', '2021-04-06 11:07:56', '2021-04-06 11:07:56', '', 2202, 'https://qualstream.net/?p=6951', 0, 'revision', '', 0),
(6952, 1, '2021-04-06 11:07:22', '2021-04-06 11:07:22', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\n\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<ul>\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392426455{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Outsourcing', 'At the end of the day, going forward, a new normal that has evolved from generation.', 'inherit', 'closed', 'closed', '', '2199-autosave-v1', '', '', '2021-04-06 11:07:22', '2021-04-06 11:07:22', '', 2199, 'https://qualstream.net/?p=6952', 0, 'revision', '', 0),
(6953, 1, '2021-04-06 11:07:41', '2021-04-06 11:07:41', '', 'outsourcing', '', 'inherit', 'open', 'closed', '', 'outsourcing', '', '', '2021-04-06 11:07:41', '2021-04-06 11:07:41', '', 2199, 'https://qualstream.net/wp-content/uploads/2018/04/outsourcing.jpg', 0, 'attachment', 'image/jpeg', 0),
(6954, 1, '2021-04-06 11:07:47', '2021-04-06 11:07:47', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1549427531051{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392383562{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Staffing', 'Bring to the table win-win survival strategies to ensure proactive domination.', 'inherit', 'closed', 'closed', '', '2202-revision-v1', '', '', '2021-04-06 11:07:47', '2021-04-06 11:07:47', '', 2202, 'https://qualstream.net/?p=6954', 0, 'revision', '', 0),
(6955, 1, '2021-04-06 11:07:54', '2021-04-06 11:07:54', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392426455{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Outsourcing', 'At the end of the day, going forward, a new normal that has evolved from generation.', 'inherit', 'closed', 'closed', '', '2199-revision-v1', '', '', '2021-04-06 11:07:54', '2021-04-06 11:07:54', '', 2199, 'https://qualstream.net/?p=6955', 0, 'revision', '', 0),
(6956, 1, '2021-04-06 11:17:42', '2021-04-06 11:17:42', '', 'world-map-digital', '', 'inherit', 'open', 'closed', '', 'world-map-digital', '', '', '2021-04-06 11:17:42', '2021-04-06 11:17:42', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg', 0, 'attachment', 'image/jpeg', 0),
(6957, 1, '2021-04-06 11:25:35', '2021-04-06 11:25:35', '', 'staff-qual', '', 'inherit', 'open', 'closed', '', 'staff-qual', '', '', '2021-04-06 11:25:35', '2021-04-06 11:25:35', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/staff-qual.jpg', 0, 'attachment', 'image/jpeg', 0),
(6958, 1, '2021-04-06 11:44:13', '2021-04-06 11:44:13', '', 'amazon-logo', '', 'inherit', 'open', 'closed', '', 'amazon-logo', '', '', '2021-04-06 11:44:13', '2021-04-06 11:44:13', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/amazon-logo.png', 0, 'attachment', 'image/png', 0),
(6959, 1, '2021-04-06 11:44:15', '2021-04-06 11:44:15', '', 'flipcart-logo', '', 'inherit', 'open', 'closed', '', 'flipcart-logo', '', '', '2021-04-06 11:44:15', '2021-04-06 11:44:15', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/flipcart-logo.png', 0, 'attachment', 'image/png', 0),
(6960, 1, '2021-04-06 11:44:16', '2021-04-06 11:44:16', '', 'google-logo', '', 'inherit', 'open', 'closed', '', 'google-logo', '', '', '2021-04-06 11:44:16', '2021-04-06 11:44:16', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/google-logo.png', 0, 'attachment', 'image/png', 0),
(6961, 1, '2021-04-06 11:44:17', '2021-04-06 11:44:17', '', 'netflix-logo', '', 'inherit', 'open', 'closed', '', 'netflix-logo', '', '', '2021-04-06 11:44:17', '2021-04-06 11:44:17', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/netflix-logo.png', 0, 'attachment', 'image/png', 0),
(6962, 1, '2021-04-06 11:44:19', '2021-04-06 11:44:19', '', 'prime-video-logo', '', 'inherit', 'open', 'closed', '', 'prime-video-logo', '', '', '2021-04-06 11:44:19', '2021-04-06 11:44:19', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/prime-video-logo.png', 0, 'attachment', 'image/png', 0),
(6963, 1, '2021-04-06 11:44:35', '2021-04-06 11:44:35', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Helpful Content\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617708435004{background-color: #002e5b !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 11:44:35', '2021-04-06 11:44:35', '', 1071, 'https://qualstream.net/?p=6963', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6964, 1, '2021-04-06 11:45:27', '2021-04-06 11:45:27', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617708435004{background-color: #002e5b !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 11:45:27', '2021-04-06 11:45:27', '', 1071, 'https://qualstream.net/?p=6964', 0, 'revision', '', 0),
(6965, 1, '2021-04-06 11:47:39', '2021-04-06 11:47:39', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617708435004{background-color: #002e5b !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6957\" img_size=\"full\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 11:47:39', '2021-04-06 11:47:39', '', 1071, 'https://qualstream.net/?p=6965', 0, 'revision', '', 0),
(6966, 1, '2021-04-06 11:50:10', '2021-04-06 11:50:10', '', 'staf-image', '', 'inherit', 'open', 'closed', '', 'staf-image', '', '', '2021-04-06 11:50:10', '2021-04-06 11:50:10', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/staf-image.jpg', 0, 'attachment', 'image/jpeg', 0),
(6967, 1, '2021-04-06 11:50:50', '2021-04-06 11:50:50', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617709841816{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 11:50:50', '2021-04-06 11:50:50', '', 1071, 'https://qualstream.net/?p=6967', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6968, 1, '2021-04-06 11:53:11', '2021-04-06 11:53:11', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617706042611{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/middle-banner.jpg?id=6941) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617709841816{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 11:53:11', '2021-04-06 11:53:11', '', 1071, 'https://qualstream.net/?p=6968', 0, 'revision', '', 0),
(6970, 1, '2021-04-06 11:55:46', '2021-04-06 11:55:46', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-06 11:55:46', '2021-04-06 11:55:46', '', 6926, 'https://qualstream.net/?p=6970', 0, 'revision', '', 0),
(6971, 1, '2021-04-06 12:02:34', '2021-04-06 12:02:34', '', 'mid-img', '', 'inherit', 'open', 'closed', '', 'mid-img', '', '', '2021-04-06 12:02:34', '2021-04-06 12:02:34', '', 1071, 'https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(6972, 1, '2021-04-06 12:02:53', '2021-04-06 12:02:53', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 12:02:53', '2021-04-06 12:02:53', '', 1071, 'https://qualstream.net/?p=6972', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6973, 1, '2021-04-06 12:04:46', '2021-04-06 12:04:46', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710681932{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 12:04:46', '2021-04-06 12:04:46', '', 1071, 'https://qualstream.net/?p=6973', 0, 'revision', '', 0),
(6974, 1, '2021-04-06 12:05:36', '2021-04-06 12:05:36', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 12:05:36', '2021-04-06 12:05:36', '', 1071, 'https://qualstream.net/?p=6974', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6975, 1, '2021-04-06 12:07:43', '2021-04-06 12:07:43', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1617704586934{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services</span> <span style=\"color: #ffffff;\">Staffing and Outsourcing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-06 12:07:43', '2021-04-06 12:07:43', '', 1071, 'https://qualstream.net/?p=6975', 0, 'revision', '', 0),
(6977, 1, '2021-04-14 11:05:02', '2021-04-14 11:05:02', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services, Staffing Services and Outsourcing. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-14 11:05:02', '2021-04-14 11:05:02', '', 1071, 'https://qualstream.net/?p=6977', 0, 'revision', '', 0),
(6978, 1, '2021-04-14 11:07:22', '2021-04-14 11:07:22', '[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\" css=\".vc_custom_1452702342137{padding-right: 45px !important;}\"][vc_custom_heading source=\"post_title\" use_theme_fonts=\"yes\" el_class=\"no_stripe\"][stm_post_details][vc_column_text css=\".vc_custom_1456126057085{margin-bottom: 20px !important;}\"]The new wordpress theme called Consulting WP has been lauded by critics for its presentation. The theme is made by Style Mix Themes, who have been key players in the theme industry for a long time. People were excited to see what they would come up with next; their specialty has always been designing industry specific themes. This time they have focused on the consultation industry and have hit a home run.\r\n\r\nThere are many great things within the theme which are the cause of its popularity. The biggest factor is the appearance of the theme; it disrupts theme design clichés without being unprofessional. The different possible color combinations are also being appreciated by many companies. The theme continues to rise in popularity and many other companies have expressed an interest in deploying it on their new websites. The creators of the theme are happy with the response and have vowed to create further themes exploring the same concepts[/vc_column_text][vc_row_inner css=\".vc_custom_1452700243026{margin-bottom: 39px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Growth through innovation/creativity:</strong>\r\n<span style=\"font-size: 13px;\">Rather than be constrained by ideas for new products, services and new markets coming from just a few people, a Thinking Corporation can tap into the employees.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Increased profits:</strong>\r\n<span style=\"font-size: 13px;\">The corporation will experience an increase in profits due to savings in operating costs as well as sales from new products, services and ventures.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Higher business values:</strong>\r\n<span style=\"font-size: 13px;\">The link between profits and business value means that the moment a corporation creates a new sustainable level of profit, the business value is adjusted accordingly.</span></li>\r\n 	<li style=\"margin-bottom: 15px;\"><strong>Lower staff turnover:</strong>\r\n<span style=\"font-size: 13px;\">This, combined with the culture that must exist for innovation and creativity to flourish, means that new employees will be attracted to the organization.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_bottom][stm_post_about_author][stm_post_comments][stm_spacing lg_spacing=\"80\" md_spacing=\"80\" sm_spacing=\"30\" xs_spacing=\"20\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"527\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1459505959648{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392426455{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'IT Solutions', 'At the end of the day, going forward, a new normal that has evolved from generation.', 'inherit', 'closed', 'closed', '', '2199-revision-v1', '', '', '2021-04-14 11:07:22', '2021-04-14 11:07:22', '', 2199, 'https://qualstream.net/?p=6978', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6979, 1, '2021-04-14 11:09:13', '2021-04-14 11:09:13', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of Qual Stream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1617704945977{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1617707986450{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. Qual Stream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">Qual Stream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. Qual Stream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, Qual Stream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-14 11:09:13', '2021-04-14 11:09:13', '', 1071, 'https://qualstream.net/?p=6979', 0, 'revision', '', 0),
(6982, 1, '2021-04-22 07:30:05', '2021-04-14 11:25:13', '', 'Staffing', '', 'publish', 'closed', 'closed', '', 'staffing', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=6982', 5, 'nav_menu_item', '', 0),
(6996, 1, '2021-04-16 05:05:57', '2021-04-16 05:05:57', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-04-16 05:05:57', '2021-04-16 05:05:57', '', 1071, 'https://qualstream.net/?p=6996', 0, 'revision', '', 0),
(7004, 1, '2021-04-16 05:30:16', '2021-04-16 05:30:16', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Enterprise Portal Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.\r\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Mobile Application Development</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.\r\nWe will make sure, from anywhere and any time, that you are always available on any device.\r\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>QA - Testing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]QualStream Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.\r\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Performance Management</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT QualStream we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.\r\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Portal Upgrade and Migration</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.\r\n\r\nPortal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Security</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.\r\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.\r\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Maintanence</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.\r\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'publish', 'closed', 'closed', '', 'application-development-and-maintenence', '', '', '2021-04-21 06:09:58', '2021-04-21 06:09:58', '', 0, 'https://qualstream.net/?page_id=7004', 0, 'page', '', 0),
(7005, 1, '2021-04-16 05:30:16', '2021-04-16 05:30:16', '', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:30:16', '2021-04-16 05:30:16', '', 7004, 'https://qualstream.net/?p=7005', 0, 'revision', '', 0),
(7007, 1, '2021-04-16 05:32:12', '2021-04-16 05:32:12', '<h2>Company overview</h2>\r\nConsulting WP is a global consulting powerhouse. We began our operations a few decades ago and have grown due to excellent relationships with our clients. We started out small, with just a few people and a small office, but today we have offices in multiple countries with hundreds of people working inside them.\r\n\r\nWe achieved our success because of how successfully we integrate with our clients. One complaint many people have about consultants is that they can be disruptive. Employees fear outside consultants coming in and destroying the workflow. Our clients face no such issues.[/vc_column_text][vc_column_text css=\".vc_custom_1455883727307{margin-bottom: 34px !important;}\"]\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1453471528699{margin-bottom: 15px !important;}\" el_class=\"no_stripe\"][vc_column_text]Our renowned coaching programs will allow you to:\r\n<ul>\r\n 	<li>Work fewer hours — and make more money</li>\r\n 	<li>Attract and retain quality, high-paying customers</li>\r\n 	<li>Manage your time so you’ll get more done in less time</li>\r\n 	<li>Hone sharp leadership skills to manage your team</li>\r\n 	<li>Cut expenses without sacrificing quality</li>\r\n 	<li>Automate your business, so you can leave for days, weeks, or even months at a time</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"How we work\" font_container=\"tag:h4|text_align:left|color:%23222222\" use_theme_fonts=\"yes\" css=\".vc_custom_1453471549250{margin-bottom: 28px !important;}\" el_class=\"no_stripe\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5588\" img_size=\"395x264\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"311\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:32:12', '2021-04-16 05:32:12', '', 7004, 'https://qualstream.net/?p=7007', 0, 'revision', '', 0),
(7008, 1, '2021-04-16 05:33:47', '2021-04-16 05:33:47', '<p>[vc_row][vc_column][vc_column_text]</p>\n<h2>Company overview</h2>\n<p>Consulting WP is a global consulting powerhouse. We began our operations a few decades ago and have grown due to excellent relationships with our clients. We started out small, with just a few people and a small office, but today we have offices in multiple countries with hundreds of people working inside them.</p>\n<p>We achieved our success because of how successfully we integrate with our clients. One complaint many people have about consultants is that they can be disruptive. Employees fear outside consultants coming in and destroying the workflow. Our clients face no such issues.[/vc_column_text][/vc_column][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_row][vc_column_text css=\".vc_custom_1455883727307{margin-bottom: 34px !important;}\"]</p>\n<blockquote><p>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</p></blockquote>\n<p>[/vc_column_text][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][vc_row][/vc_row][/vc_row][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][vc_row][/vc_row][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:33:47', '2021-04-16 05:33:47', '', 7004, 'https://qualstream.net/?p=7008', 0, 'revision', '', 0),
(7009, 1, '2021-04-16 05:35:49', '2021-04-16 05:35:49', '[vc_row][vc_column][vc_column_text]\r\n<h2>Company overview</h2>\r\n&nbsp;\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n[/vc_column_text][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][vc_row][/vc_row][/vc_row][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][vc_row][/vc_row][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:35:49', '2021-04-16 05:35:49', '', 7004, 'https://qualstream.net/?p=7009', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7010, 1, '2021-04-16 05:36:23', '2021-04-16 05:36:23', '<h2></h2>\r\n&nbsp;\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n[/vc_column_text][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][vc_row][/vc_row][/vc_row][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][vc_row][/vc_row][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:36:23', '2021-04-16 05:36:23', '', 7004, 'https://qualstream.net/?p=7010', 0, 'revision', '', 0),
(7011, 1, '2021-04-16 05:36:55', '2021-04-16 05:36:55', '&nbsp;\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n[/vc_column_text][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][vc_row][/vc_row][/vc_row][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][vc_row][/vc_row][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:36:55', '2021-04-16 05:36:55', '', 7004, 'https://qualstream.net/?p=7011', 0, 'revision', '', 0),
(7012, 1, '2021-04-16 05:38:09', '2021-04-16 05:38:09', '&nbsp;\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n[vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][vc_row][/vc_row][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545389865376{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][vc_row][/vc_row][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:38:09', '2021-04-16 05:38:09', '', 7004, 'https://qualstream.net/?p=7012', 0, 'revision', '', 0),
(7013, 1, '2021-04-16 05:38:53', '2021-04-16 05:38:53', '&nbsp;\r\n<blockquote>Consulting WP continues to grow ever day thanks to the confidence our clients have in us. We cover many industries such as financial, energy, business services, consumer products.</blockquote>\r\n&nbsp;', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:38:53', '2021-04-16 05:38:53', '', 7004, 'https://qualstream.net/?p=7013', 0, 'revision', '', 0),
(7014, 1, '2021-04-16 05:44:12', '2021-04-16 05:44:12', '<p>[vc_row][vc_column][vc_column_text]&nbsp;</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>&nbsp;[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:44:12', '2021-04-16 05:44:12', '', 7004, 'https://qualstream.net/?p=7014', 0, 'revision', '', 0),
(7015, 1, '2021-04-16 05:45:41', '2021-04-16 05:45:41', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]&nbsp;</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>&nbsp;[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:45:41', '2021-04-16 05:45:41', '', 7004, 'https://qualstream.net/?p=7015', 0, 'revision', '', 0),
(7017, 1, '2021-04-16 05:47:01', '2021-04-16 05:47:01', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-16 05:47:01', '2021-04-16 05:47:01', '', 6926, 'https://qualstream.net/?p=7017', 0, 'revision', '', 0),
(7018, 1, '2021-04-16 05:48:30', '2021-04-16 05:48:30', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]&nbsp;</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>&nbsp;[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text el_class=\"text-wrap\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:48:30', '2021-04-16 05:48:30', '', 7004, 'https://qualstream.net/?p=7018', 0, 'revision', '', 0),
(7019, 1, '2021-04-16 05:51:46', '2021-04-16 05:51:46', '', 'test', '', 'inherit', 'open', 'closed', '', 'test', '', '', '2021-04-16 05:51:46', '2021-04-16 05:51:46', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/test.jpg', 0, 'attachment', 'image/jpeg', 0),
(7020, 1, '2021-04-16 05:53:19', '2021-04-16 05:53:19', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]&nbsp;</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>&nbsp;[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text el_class=\"text-wrap\" css=\".vc_custom_1618552374607{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:53:19', '2021-04-16 05:53:19', '', 7004, 'https://qualstream.net/?p=7020', 0, 'revision', '', 0),
(7021, 1, '2021-04-16 05:54:20', '2021-04-16 05:54:20', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]&nbsp;</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>&nbsp;[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:54:20', '2021-04-16 05:54:20', '', 7004, 'https://qualstream.net/?p=7021', 0, 'revision', '', 0),
(7022, 1, '2021-04-16 05:57:37', '2021-04-16 05:57:37', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote><h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:57:37', '2021-04-16 05:57:37', '', 7004, 'https://qualstream.net/?p=7022', 0, 'revision', '', 0),
(7023, 1, '2021-04-21 06:09:54', '2021-04-21 06:09:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\n\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\n\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.\nWe will make sure, from anywhere and any time, that you are always available on any device.\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]QualStream Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT QualStream we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.\n\nPortal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-autosave-v1', '', '', '2021-04-21 06:09:54', '2021-04-21 06:09:54', '', 7004, 'https://qualstream.net/?p=7023', 0, 'revision', '', 0),
(7024, 1, '2021-04-16 05:58:53', '2021-04-16 05:58:53', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote><h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n\r\n[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote><h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 05:58:53', '2021-04-16 05:58:53', '', 7004, 'https://qualstream.net/?p=7024', 0, 'revision', '', 0),
(7025, 1, '2021-04-16 06:00:15', '2021-04-16 06:00:15', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 06:00:15', '2021-04-16 06:00:15', '', 7004, 'https://qualstream.net/?p=7025', 0, 'revision', '', 0),
(7026, 1, '2021-04-16 06:09:24', '2021-04-16 06:09:24', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.<br />\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.<br />\nWe will make sure, from anywhere and any time, that you are always available on any device.<br />\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.<br />\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.<br />\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.</p>\n<p>Portal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.<br />\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.<br />\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.<br />\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 06:09:24', '2021-04-16 06:09:24', '', 7004, 'https://qualstream.net/?p=7026', 0, 'revision', '', 0),
(7027, 1, '2021-04-16 07:12:27', '2021-04-16 07:12:27', '', 'cloud-monitoring-services', '', 'inherit', 'open', 'closed', '', 'cloud-monitoring-services', '', '', '2021-04-16 07:12:27', '2021-04-16 07:12:27', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-monitoring-services.png', 0, 'attachment', 'image/png', 0),
(7028, 1, '2021-04-16 07:12:39', '2021-04-16 07:12:39', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.<br />\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.<br />\nWe will make sure, from anywhere and any time, that you are always available on any device.<br />\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.<br />\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.<br />\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.</p>\n<p>Portal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.<br />\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.<br />\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.<br />\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 07:12:39', '2021-04-16 07:12:39', '', 7004, 'https://qualstream.net/?p=7028', 0, 'revision', '', 0),
(7029, 1, '2021-04-16 07:15:05', '2021-04-16 07:15:05', '', 'enterprise-portal-solutions', '', 'inherit', 'open', 'closed', '', 'enterprise-portal-solutions', '', '', '2021-04-16 07:15:05', '2021-04-16 07:15:05', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/enterprise-portal-solutions.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7030, 1, '2021-04-16 07:15:42', '2021-04-16 07:15:42', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.<br />\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.<br />\nWe will make sure, from anywhere and any time, that you are always available on any device.<br />\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.<br />\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.<br />\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.</p>\n<p>Portal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.<br />\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.<br />\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.<br />\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 07:15:42', '2021-04-16 07:15:42', '', 7004, 'https://qualstream.net/?p=7030', 0, 'revision', '', 0),
(7031, 1, '2021-04-16 07:22:14', '2021-04-16 07:22:14', '', 'mobile-app-dev', '', 'inherit', 'open', 'closed', '', 'mobile-app-dev', '', '', '2021-04-16 07:22:14', '2021-04-16 07:22:14', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/mobile-app-dev.png', 0, 'attachment', 'image/png', 0),
(7032, 1, '2021-04-16 07:24:47', '2021-04-16 07:24:47', '', 'qa-testing', '', 'inherit', 'open', 'closed', '', 'qa-testing', '', '', '2021-04-16 07:24:47', '2021-04-16 07:24:47', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/qa-testing.jpg', 0, 'attachment', 'image/jpeg', 0),
(7033, 1, '2021-04-16 07:28:11', '2021-04-16 07:28:11', '', 'app-maintanence', '', 'inherit', 'open', 'closed', '', 'app-maintanence', '', '', '2021-04-16 07:28:11', '2021-04-16 07:28:11', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/app-maintanence.jpg', 0, 'attachment', 'image/jpeg', 0),
(7034, 1, '2021-04-16 07:30:02', '2021-04-16 07:30:02', '', 'security', '', 'inherit', 'open', 'closed', '', 'security', '', '', '2021-04-16 07:30:02', '2021-04-16 07:30:02', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/security.jpg', 0, 'attachment', 'image/jpeg', 0),
(7035, 1, '2021-04-16 07:34:36', '2021-04-16 07:34:36', '', 'portal-upgrade-migration', '', 'inherit', 'open', 'closed', '', 'portal-upgrade-migration', '', '', '2021-04-16 07:34:36', '2021-04-16 07:34:36', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/portal-upgrade-migration.jpg', 0, 'attachment', 'image/jpeg', 0),
(7036, 1, '2021-04-16 07:34:57', '2021-04-16 07:34:57', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.<br />\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.<br />\nWe will make sure, from anywhere and any time, that you are always available on any device.<br />\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.<br />\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.<br />\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7019\" img_size=\"585x250\" css=\".vc_custom_1618552389864{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.</p>\n<p>Portal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.<br />\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.<br />\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.<br />\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 07:34:57', '2021-04-16 07:34:57', '', 7004, 'https://qualstream.net/?p=7036', 0, 'revision', '', 0),
(7037, 1, '2021-04-16 07:37:32', '2021-04-16 07:37:32', '', 'application-performance', '', 'inherit', 'open', 'closed', '', 'application-performance', '', '', '2021-04-16 07:37:32', '2021-04-16 07:37:32', '', 7004, 'https://qualstream.net/wp-content/uploads/2021/04/application-performance.png', 0, 'attachment', 'image/png', 0),
(7038, 1, '2021-04-16 07:37:58', '2021-04-16 07:37:58', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.</p>\n<p>The foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.</p>\n<p>We build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Enterprise Portal Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.<br />\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Mobile Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.<br />\nWe will make sure, from anywhere and any time, that you are always available on any device.<br />\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>QA - Testing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.<br />\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Performance Management</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.<br />\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Portal Upgrade and Migration</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.</p>\n<p>Portal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Security</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.<br />\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.<br />\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Application Maintanence</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.<br />\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-16 07:37:58', '2021-04-16 07:37:58', '', 7004, 'https://qualstream.net/?p=7038', 0, 'revision', '', 0),
(7039, 1, '2021-04-16 09:44:36', '2021-04-16 09:44:36', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7045\" img_size=\"585x250\" css=\".vc_custom_1618566849432{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7047\" img_size=\"full\" css=\".vc_custom_1618567244110{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7049\" img_size=\"full\" css=\".vc_custom_1618567482973{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7050\" img_size=\"full\" css=\".vc_custom_1618567645970{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7051\" img_size=\"full\" css=\".vc_custom_1618567813266{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7052\" img_size=\"full\" css=\".vc_custom_1618567928806{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7054\" img_size=\"full\" css=\".vc_custom_1618568131991{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7056\" img_size=\"full\" css=\".vc_custom_1618568512552{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7057\" img_size=\"full\" css=\".vc_custom_1618568778735{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7058\" img_size=\"full\" css=\".vc_custom_1618569235548{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7059\" img_size=\"full\" css=\".vc_custom_1618569415058{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'publish', 'closed', 'closed', '', 'cloud-and-infrastructure-services', '', '', '2021-04-16 10:37:02', '2021-04-16 10:37:02', '', 0, 'https://qualstream.net/?page_id=7039', 0, 'page', '', 0),
(7041, 1, '2021-04-16 09:20:40', '2021-04-16 09:20:40', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-16 09:20:40', '2021-04-16 09:20:40', '', 6926, 'https://qualstream.net/?p=7041', 0, 'revision', '', 0),
(7043, 1, '2021-04-16 09:22:21', '2021-04-16 09:22:21', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-16 09:22:21', '2021-04-16 09:22:21', '', 6926, 'https://qualstream.net/?p=7043', 0, 'revision', '', 0),
(7044, 1, '2021-04-16 09:44:36', '2021-04-16 09:44:36', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'inherit', 'closed', 'closed', '', '7039-revision-v1', '', '', '2021-04-16 09:44:36', '2021-04-16 09:44:36', '', 7039, 'https://qualstream.net/?p=7044', 0, 'revision', '', 0),
(7045, 1, '2021-04-16 09:53:56', '2021-04-16 09:53:56', '', 'cloud-infrastructure-monitoring', '', 'inherit', 'open', 'closed', '', 'cloud-infrastructure-monitoring', '', '', '2021-04-16 09:53:56', '2021-04-16 09:53:56', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-infrastructure-monitoring.jpg', 0, 'attachment', 'image/jpeg', 0),
(7047, 1, '2021-04-16 10:00:39', '2021-04-16 10:00:39', '', 'cloud-optmization', '', 'inherit', 'open', 'closed', '', 'cloud-optmization', '', '', '2021-04-16 10:00:39', '2021-04-16 10:00:39', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-optmization.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7048, 1, '2021-04-16 10:00:51', '2021-04-16 10:00:51', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7045\" img_size=\"585x250\" css=\".vc_custom_1618566849432{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7047\" img_size=\"full\" css=\".vc_custom_1618567244110{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'inherit', 'closed', 'closed', '', '7039-revision-v1', '', '', '2021-04-16 10:00:51', '2021-04-16 10:00:51', '', 7039, 'https://qualstream.net/?p=7048', 0, 'revision', '', 0),
(7049, 1, '2021-04-16 10:04:36', '2021-04-16 10:04:36', '', 'cloud-enabled-automation', '', 'inherit', 'open', 'closed', '', 'cloud-enabled-automation', '', '', '2021-04-16 10:04:36', '2021-04-16 10:04:36', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-enabled-automation.jpg', 0, 'attachment', 'image/jpeg', 0),
(7050, 1, '2021-04-16 10:07:21', '2021-04-16 10:07:21', '', 'cloud-migrations', '', 'inherit', 'open', 'closed', '', 'cloud-migrations', '', '', '2021-04-16 10:07:21', '2021-04-16 10:07:21', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-migrations.jpg', 0, 'attachment', 'image/jpeg', 0),
(7051, 1, '2021-04-16 10:10:06', '2021-04-16 10:10:06', '', 'cloud-native-devops', '', 'inherit', 'open', 'closed', '', 'cloud-native-devops', '', '', '2021-04-16 10:10:06', '2021-04-16 10:10:06', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-native-devops.jpg', 0, 'attachment', 'image/jpeg', 0),
(7052, 1, '2021-04-16 10:12:04', '2021-04-16 10:12:04', '', 'cloud-native-app', '', 'inherit', 'open', 'closed', '', 'cloud-native-app', '', '', '2021-04-16 10:12:04', '2021-04-16 10:12:04', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-native-app.jpg', 0, 'attachment', 'image/jpeg', 0),
(7053, 1, '2021-04-16 10:12:17', '2021-04-16 10:12:17', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7045\" img_size=\"585x250\" css=\".vc_custom_1618566849432{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7047\" img_size=\"full\" css=\".vc_custom_1618567244110{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7049\" img_size=\"full\" css=\".vc_custom_1618567482973{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7050\" img_size=\"full\" css=\".vc_custom_1618567645970{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7051\" img_size=\"full\" css=\".vc_custom_1618567813266{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7052\" img_size=\"full\" css=\".vc_custom_1618567928806{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'inherit', 'closed', 'closed', '', '7039-revision-v1', '', '', '2021-04-16 10:12:17', '2021-04-16 10:12:17', '', 7039, 'https://qualstream.net/?p=7053', 0, 'revision', '', 0),
(7054, 1, '2021-04-16 10:15:27', '2021-04-16 10:15:27', '', 'containerization strategy and architecture', '', 'inherit', 'open', 'closed', '', 'containerization-strategy-and-architecture', '', '', '2021-04-16 10:15:27', '2021-04-16 10:15:27', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/containerization-strategy-and-architecture.jpg', 0, 'attachment', 'image/jpeg', 0),
(7055, 1, '2021-04-16 10:15:43', '2021-04-16 10:15:43', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7045\" img_size=\"585x250\" css=\".vc_custom_1618566849432{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7047\" img_size=\"full\" css=\".vc_custom_1618567244110{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7049\" img_size=\"full\" css=\".vc_custom_1618567482973{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7050\" img_size=\"full\" css=\".vc_custom_1618567645970{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7051\" img_size=\"full\" css=\".vc_custom_1618567813266{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7052\" img_size=\"full\" css=\".vc_custom_1618567928806{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7054\" img_size=\"full\" css=\".vc_custom_1618568131991{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'inherit', 'closed', 'closed', '', '7039-revision-v1', '', '', '2021-04-16 10:15:43', '2021-04-16 10:15:43', '', 7039, 'https://qualstream.net/?p=7055', 0, 'revision', '', 0),
(7056, 1, '2021-04-16 10:21:37', '2021-04-16 10:21:37', '', 'cloud-native-application', '', 'inherit', 'open', 'closed', '', 'cloud-native-application', '', '', '2021-04-16 10:21:37', '2021-04-16 10:21:37', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/cloud-native-application.jpg', 0, 'attachment', 'image/jpeg', 0),
(7057, 1, '2021-04-16 10:26:02', '2021-04-16 10:26:02', '', 'container-instrumentaion', '', 'inherit', 'open', 'closed', '', 'container-instrumentaion', '', '', '2021-04-16 10:26:02', '2021-04-16 10:26:02', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/container-instrumentaion.jpg', 0, 'attachment', 'image/jpeg', 0),
(7058, 1, '2021-04-16 10:33:46', '2021-04-16 10:33:46', '', 'monitoring-production-support', '', 'inherit', 'open', 'closed', '', 'monitoring-production-support', '', '', '2021-04-16 10:33:46', '2021-04-16 10:33:46', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/monitoring-production-support.jpg', 0, 'attachment', 'image/jpeg', 0),
(7059, 1, '2021-04-16 10:36:45', '2021-04-16 10:36:45', '', 'installation-configuration-setup', '', 'inherit', 'open', 'closed', '', 'installation-configuration-setup', '', '', '2021-04-16 10:36:45', '2021-04-16 10:36:45', '', 7039, 'https://qualstream.net/wp-content/uploads/2021/04/installation-configuration-setup.jpg', 0, 'attachment', 'image/jpeg', 0),
(7060, 1, '2021-04-16 10:37:02', '2021-04-16 10:37:02', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Infrastructure Monitoring Services</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565362006{padding-left: 20px !important;}\"]We monitoring and optimize cloudbased applications 24/7 and keep track of complete IT infrastructure health. Resolve the problem of controlling andmanaging cloud IT investments for customers effectively. Monitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7045\" img_size=\"585x250\" css=\".vc_custom_1618566849432{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Optimization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565445247{padding-left: 20px !important;}\"]Greatly increase your cloud asset output and returns. Review current infrastructure and find opportunities that may exploit a different collection of cloud services to perform some business function but at lower costs. Improve and find possibilities for automating internal infrastructure processes to optimize the value of the enterprise cost-effectively.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7047\" img_size=\"full\" css=\".vc_custom_1618567244110{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Enabled Automation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565484632{padding-left: 20px !important;}\"]Automate the cloud using various resources available on the market, further eliminating the manual effort of delivering and handling workloads on cloud computing.</p>\n<p>To manage resources better, we use cloud automation tools to automatically build, change, and scale resources down.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7049\" img_size=\"full\" css=\".vc_custom_1618567482973{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Migrations</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565517816{padding-left: 20px !important;}\"]We continue with the thorough preparation and evaluation of apps, data and the strategy for integration around them.</p>\n<p>Our Licensed Architects categorize applications that can be replaced, reused, re-factured, re-platformed or rehosted[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7050\" img_size=\"full\" css=\".vc_custom_1618567645970{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud Native and DevOps</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565568271{padding-left: 20px !important;}\"]Today, markets are very competitive, and rapidly launching the application / product with minimal business interruption has become imperative.<br />\nWith the right selection of equipment, procedures and technology, we will help speed up application execution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7051\" img_size=\"full\" css=\".vc_custom_1618567813266{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Development</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565597744{padding-left: 20px !important;}\"]Microservices that combine traditional and modern technologies Simplifying legacy systems and achieving Flexible hybrid cloud system frameworks that allow automated business processes and decisions[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7052\" img_size=\"full\" css=\".vc_custom_1618567928806{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Containerization Strategy and Architecture</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565660591{padding-left: 20px !important;}\"]Our trained specialists assist with the discovery of appropriate Open Container Projects (OCI) Frameworks that can effectively customize and improve current structures and further merge them safely and simplistically, with new applications.</p>\n<p>Our trained specialists will also assist you in determining the best containerization framework and deployment approach.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7054\" img_size=\"full\" css=\".vc_custom_1618568131991{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Cloud-Native Application Modernization</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565702696{padding-left: 20px !important;}\"]Automate the cloud with numerous technologies that are available on the market, which further decrease the human effort in server workload procurement and maintenance.<br />\nIn order to further manage resources, we use software like cloud management to automatically build, change and scale services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7056\" img_size=\"full\" css=\".vc_custom_1618568512552{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Container Instrumentation</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565784547{padding-left: 20px !important;}\"]In order to resolve fundamental challenges when applying Cloud Native Technology containerization, our methods concentrate on configuration automation, log monitoring, health reviews, predictive monitoring and collaborative tracking.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7057\" img_size=\"full\" css=\".vc_custom_1618568778735{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Monitoring and Production Support</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565814893{padding-left: 20px !important;}\"]We monitoring and optimize cloud-based applications 24/7 and keep track of complete IT infrastructure health.<br />\nResolve the problem of controlling andmanaging cloud IT investments for customers effectively.<br />\nMonitoring and managing the Cloud infrastructure, providing 24/7 support.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7058\" img_size=\"full\" css=\".vc_custom_1618569235548{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Installation, Configuration and Setup</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618565896447{padding-left: 20px !important;}\"]OpenShift Infrastructure<br />\nOur Red Hat Certified Experience help<br />\nOur customers build and manage OpenShift ‘s cloud ecosystem, including clusters, storage, routing, security.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7059\" img_size=\"full\" css=\".vc_custom_1618569415058{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Cloud and Infrastructure Services', '', 'inherit', 'closed', 'closed', '', '7039-revision-v1', '', '', '2021-04-16 10:37:02', '2021-04-16 10:37:02', '', 7039, 'https://qualstream.net/?p=7060', 0, 'revision', '', 0),
(7061, 1, '2021-04-16 10:39:13', '2021-04-16 10:39:13', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract Staffing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.</p>\n<p>With QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Cost Savings</li>\n<li>Quality of Staff</li>\n<li>Time And Flexibility</li>\n<li>Match Staffing levels with your workland</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract Staffing', '', 'publish', 'closed', 'closed', '', 'contract-staffing', '', '', '2021-04-16 10:48:17', '2021-04-16 10:48:17', '', 0, 'https://qualstream.net/?page_id=7061', 0, 'page', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7062, 1, '2021-04-16 10:39:13', '2021-04-16 10:39:13', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Enterprise Portal Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.\r\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Mobile Application Development</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.\r\nWe will make sure, from anywhere and any time, that you are always available on any device.\r\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>QA - Testing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]Alphaqual Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.\r\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Performance Management</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT Alphaqual we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.\r\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Portal Upgrade and Migration</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.\r\n\r\nPortal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Security</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.\r\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.\r\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Maintanence</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.\r\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Contract Staffing', '', 'inherit', 'closed', 'closed', '', '7061-revision-v1', '', '', '2021-04-16 10:39:13', '2021-04-16 10:39:13', '', 7061, 'https://qualstream.net/?p=7062', 0, 'revision', '', 0),
(7063, 1, '2021-04-16 10:47:48', '2021-04-16 10:47:48', '', 'contract-staffing', '', 'inherit', 'open', 'closed', '', 'contract-staffing-2', '', '', '2021-04-16 10:47:48', '2021-04-16 10:47:48', '', 7061, 'https://qualstream.net/wp-content/uploads/2021/04/contract-staffing.jpg', 0, 'attachment', 'image/jpeg', 0),
(7064, 1, '2021-04-16 10:48:17', '2021-04-16 10:48:17', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract Staffing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.</p>\n<p>With QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Cost Savings</li>\n<li>Quality of Staff</li>\n<li>Time And Flexibility</li>\n<li>Match Staffing levels with your workland</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract Staffing', '', 'inherit', 'closed', 'closed', '', '7061-revision-v1', '', '', '2021-04-16 10:48:17', '2021-04-16 10:48:17', '', 7061, 'https://qualstream.net/?p=7064', 0, 'revision', '', 0),
(7065, 1, '2021-04-16 10:50:21', '2021-04-16 10:50:21', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract to Hire</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618570636718{padding-left: 20px !important;}\"]Our contract to recruit opportunities would give both candidates and employers a chance to test their staff before they make a long-term commitment. By recruiting an employee on a short-term employment to see if they  suit the position and the business, you save money , time and stress.  If they are, you can quickly  recruit them and they’re qualified already! You would not miss anything if they don’t  suit or if the role is no longer required.</p>\n<p>QualStream Contract-to-Hire solutions provide our customers the option of hiring the candidate after an initial 3-6 months on contract.</p>\n<p>During the initial engagement, our clients have the opportunity to review the candidate’s core skill level as well as ‘on-the-job’ interpersonal and presentation skills prior to making a hiring commitment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract to Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618570797868{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Fast and Flexible</li>\n<li>Paperwork and Benefits are completed by QualStream</li>\n<li>Hiring/Firing is assumed by QualStream</li>\n<li>Ability to see if an employee is the right fit</li>\n<li>Reduce turnover and downtime</li>\n</ul>\n<p>Making sure that you have the right candidate is very important to us and we are sure that we will help fill the position with the proper person. We encourage employers to use this option when you do not want to commit to a permanent offer up front.</p>\n<p>Contract to Hire Staffing is the ideal,risk-free option for businesses of all sizes.From procurement to delivery, we pay careful attention to your expectations to guarantee that we provide the right candidate for you![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7073\" img_size=\"full\" css=\".vc_custom_1618571078861{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract To Hire', '', 'publish', 'closed', 'closed', '', 'contract-to-hire', '', '', '2021-04-16 11:04:44', '2021-04-16 11:04:44', '', 0, 'https://qualstream.net/?page_id=7065', 0, 'page', '', 0),
(7066, 1, '2021-04-16 10:50:21', '2021-04-16 10:50:21', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Contract Staffing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.\r\n\r\nWith QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Contract Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Cost Savings</li>\r\n 	<li>Quality of Staff</li>\r\n 	<li>Time And Flexibility</li>\r\n 	<li>Match Staffing levels with your workland</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Contract To Hire', '', 'inherit', 'closed', 'closed', '', '7065-revision-v1', '', '', '2021-04-16 10:50:21', '2021-04-16 10:50:21', '', 7065, 'https://qualstream.net/?p=7066', 0, 'revision', '', 0),
(7067, 1, '2021-04-16 10:50:29', '2021-04-16 10:50:29', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Contract Staffing</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.\n\nWith QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]\n<ul>\n 	<li>Cost Savings</li>\n 	<li>Quality of Staff</li>\n 	<li>Time And Flexibility</li>\n 	<li>Match Staffing levels with your workland</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Contract To Hire', '', 'inherit', 'closed', 'closed', '', '7065-autosave-v1', '', '', '2021-04-16 10:50:29', '2021-04-16 10:50:29', '', 7065, 'https://qualstream.net/?p=7067', 0, 'revision', '', 0),
(7068, 1, '2021-04-22 07:30:05', '2021-04-16 10:55:46', '', 'Contract To Hire Staffing', '', 'publish', 'closed', 'closed', '', 'contract-to-hire-staffing-2', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7068', 7, 'nav_menu_item', '', 0),
(7069, 1, '2021-04-22 07:30:05', '2021-04-16 10:55:46', ' ', '', '', 'publish', 'closed', 'closed', '', '7069', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7069', 6, 'nav_menu_item', '', 0),
(7070, 1, '2021-04-22 07:30:05', '2021-04-16 10:55:45', ' ', '', '', 'publish', 'closed', 'closed', '', '7070', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7070', 4, 'nav_menu_item', '', 0),
(7071, 1, '2021-04-22 07:30:05', '2021-04-16 10:55:45', ' ', '', '', 'publish', 'closed', 'closed', '', '7071', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7071', 3, 'nav_menu_item', '', 0),
(7072, 1, '2021-04-16 11:02:27', '2021-04-16 11:02:27', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract to Hire</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618570636718{padding-left: 20px !important;}\"]Our contract to recruit opportunities would give both candidates and employers a chance to test their staff before they make a long-term commitment. By recruiting an employee on a short-term employment to see if they  suit the position and the business, you save money , time and stress.  If they are, you can quickly  recruit them and they’re qualified already! You would not miss anything if they don’t  suit or if the role is no longer required.</p>\n<p>QualStream Contract-to-Hire solutions provide our customers the option of hiring the candidate after an initial 3-6 months on contract.</p>\n<p>During the initial engagement, our clients have the opportunity to review the candidate’s core skill level as well as ‘on-the-job’ interpersonal and presentation skills prior to making a hiring commitment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract to Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618570797868{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Fast and Flexible</li>\n<li>Paperwork and Benefits are completed by QualStream</li>\n<li>Hiring/Firing is assumed by QualStream</li>\n<li>Ability to see if an employee is the right fit</li>\n<li>Reduce turnover and downtime</li>\n</ul>\n<p>Making sure that you have the right candidate is very important to us and we are sure that we will help fill the position with the proper person. We encourage employers to use this option when you do not want to commit to a permanent offer up front.</p>\n<p>Contract to Hire Staffing is the ideal,risk-free option for businesses of all sizes.From procurement to delivery, we pay careful attention to your expectations to guarantee that we provide the right candidate for you![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract To Hire', '', 'inherit', 'closed', 'closed', '', '7065-revision-v1', '', '', '2021-04-16 11:02:27', '2021-04-16 11:02:27', '', 7065, 'https://qualstream.net/?p=7072', 0, 'revision', '', 0),
(7073, 1, '2021-04-16 11:04:34', '2021-04-16 11:04:34', '', 'contract-to-hire', '', 'inherit', 'open', 'closed', '', 'contract-to-hire-2', '', '', '2021-04-16 11:04:34', '2021-04-16 11:04:34', '', 7065, 'https://qualstream.net/wp-content/uploads/2021/04/contract-to-hire.jpg', 0, 'attachment', 'image/jpeg', 0),
(7074, 1, '2021-04-16 11:04:44', '2021-04-16 11:04:44', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract to Hire</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618570636718{padding-left: 20px !important;}\"]Our contract to recruit opportunities would give both candidates and employers a chance to test their staff before they make a long-term commitment. By recruiting an employee on a short-term employment to see if they  suit the position and the business, you save money , time and stress.  If they are, you can quickly  recruit them and they’re qualified already! You would not miss anything if they don’t  suit or if the role is no longer required.</p>\n<p>QualStream Contract-to-Hire solutions provide our customers the option of hiring the candidate after an initial 3-6 months on contract.</p>\n<p>During the initial engagement, our clients have the opportunity to review the candidate’s core skill level as well as ‘on-the-job’ interpersonal and presentation skills prior to making a hiring commitment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract to Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618570797868{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Fast and Flexible</li>\n<li>Paperwork and Benefits are completed by QualStream</li>\n<li>Hiring/Firing is assumed by QualStream</li>\n<li>Ability to see if an employee is the right fit</li>\n<li>Reduce turnover and downtime</li>\n</ul>\n<p>Making sure that you have the right candidate is very important to us and we are sure that we will help fill the position with the proper person. We encourage employers to use this option when you do not want to commit to a permanent offer up front.</p>\n<p>Contract to Hire Staffing is the ideal,risk-free option for businesses of all sizes.From procurement to delivery, we pay careful attention to your expectations to guarantee that we provide the right candidate for you![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7073\" img_size=\"full\" css=\".vc_custom_1618571078861{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract To Hire', '', 'inherit', 'closed', 'closed', '', '7065-revision-v1', '', '', '2021-04-16 11:04:44', '2021-04-16 11:04:44', '', 7065, 'https://qualstream.net/?p=7074', 0, 'revision', '', 0),
(7075, 1, '2021-04-16 11:06:17', '2021-04-16 11:06:17', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Full Time Staffing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618571233090{padding-left: 20px !important;}\"]Searching and recruiting a full-time employee can be a difficult job.The time and effort spent on research, posts and recruitment will cost your company a lot of time and money. At QualStream we already have a pool of professional and qualified workers who we’ve been waiting for the best place.Working alongside our QualStream Resources team helps you to concentrate on your day-to-day duties, and we will bring the best applicants to you at the right time.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Direct Hire Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Better Candidates</li>\r\n 	<li>Strong Commitment</li>\r\n 	<li>Decreased Risks</li>\r\n 	<li>Less down-time</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]\r\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\r\n<div class=\"wpb_wrapper\">\r\n\r\nMaking sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\n<strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Full Time Staffing', '', 'publish', 'closed', 'closed', '', 'full-time-staffing', '', '', '2021-04-21 06:15:36', '2021-04-21 06:15:36', '', 0, 'https://qualstream.net/?page_id=7075', 0, 'page', '', 0),
(7076, 1, '2021-04-16 11:06:17', '2021-04-16 11:06:17', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Contract to Hire</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618570636718{padding-left: 20px !important;}\"]Our contract to recruit opportunities would give both candidates and employers a chance to test their staff before they make a long-term commitment. By recruiting an employee on a short-term employment to see if they  suit the position and the business, you save money , time and stress.  If they are, you can quickly  recruit them and they’re qualified already! You would not miss anything if they don’t  suit or if the role is no longer required.\r\n\r\nQualStream Contract-to-Hire solutions provide our customers the option of hiring the candidate after an initial 3-6 months on contract.\r\n\r\nDuring the initial engagement, our clients have the opportunity to review the candidate’s core skill level as well as ‘on-the-job’ interpersonal and presentation skills prior to making a hiring commitment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Contract to Hire Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618570797868{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Fast and Flexible</li>\r\n 	<li>Paperwork and Benefits are completed by QualStream</li>\r\n 	<li>Hiring/Firing is assumed by QualStream</li>\r\n 	<li>Ability to see if an employee is the right fit</li>\r\n 	<li>Reduce turnover and downtime</li>\r\n</ul>\r\nMaking sure that you have the right candidate is very important to us and we are sure that we will help fill the position with the proper person. We encourage employers to use this option when you do not want to commit to a permanent offer up front.\r\n\r\nContract to Hire Staffing is the ideal,risk-free option for businesses of all sizes.From procurement to delivery, we pay careful attention to your expectations to guarantee that we provide the right candidate for you![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7073\" img_size=\"full\" css=\".vc_custom_1618571078861{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Full Time Staffing', '', 'inherit', 'closed', 'closed', '', '7075-revision-v1', '', '', '2021-04-16 11:06:17', '2021-04-16 11:06:17', '', 7075, 'https://qualstream.net/?p=7076', 0, 'revision', '', 0),
(7077, 1, '2021-04-16 11:13:05', '2021-04-16 11:13:05', '', 'direct-hire', '', 'inherit', 'open', 'closed', '', 'direct-hire', '', '', '2021-04-16 11:13:05', '2021-04-16 11:13:05', '', 7075, 'https://qualstream.net/wp-content/uploads/2021/04/direct-hire.jpg', 0, 'attachment', 'image/jpeg', 0),
(7078, 1, '2021-04-16 11:14:06', '2021-04-16 11:14:06', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Full Time Staffing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618571233090{padding-left: 20px !important;}\"]Searching and recruiting a full-time employee can be a difficult job.The time and effort spent on research, posts and recruitment will cost your company a lot of time and money. At AlphaQual we already have a pool of professional and qualified workers who we’ve been waiting for the best place.Working alongside our AlphaQual Resources team helps you to concentrate on your day-to-day duties, and we will bring the best applicants to you at the right time.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Direct Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Better Candidates</li>\n<li>Strong Commitment</li>\n<li>Decreased Risks</li>\n<li>Less down-time</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]</p>\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\n<div class=\"wpb_wrapper\">\n<p>Making sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.</p>\n</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<p><strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Full Time Staffing', '', 'inherit', 'closed', 'closed', '', '7075-revision-v1', '', '', '2021-04-16 11:14:06', '2021-04-16 11:14:06', '', 7075, 'https://qualstream.net/?p=7078', 0, 'revision', '', 0),
(7079, 1, '2021-04-22 07:30:05', '2021-04-16 11:35:07', ' ', '', '', 'publish', 'closed', 'closed', '', '7079', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7079', 8, 'nav_menu_item', '', 0),
(7080, 1, '2021-04-16 11:16:40', '2021-04-16 11:16:40', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consulting</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571951669{padding-left: 20px !important;}\"]QualStream provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.\r\n\r\nNearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7084\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618572144666{padding-left: 20px !important;}\"]Such recommendations can be split into a range of primary regions. These provide the assistance of hardware engineering, programme administration and enterprise architecture assistance. There are also divisions within both of these specialisation regions. Each and every sector of the market is still sponsored by our business.\r\n\r\nWith the vast variety of specialties that continue to develop daily in the IT consultancy industry, consultants may characterize their employment from a hardware repair specialist to an expert in business analysis. This is a special environment where various IT experts are already well versed in the business sector.\r\n\r\nWe therefore grow our goods and services rapidly for our customers. We balance the need for a swift solution with the need to incorporate other technology and we are backed and sustained by real-world practice. The select selection of IT programs tailored to help companies implement key goals easily and cost-efficiently complete our product development, engineering teams.\r\n\r\nWe will provide the best supply approach to fulfill the constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centres and benefit from our industry-specific and decentralised account management that facilitates fulfilment satisfaction. With access to the “Knowledge Base” expertise expertise of QaulStream, our teams are\r\nable to complete the project quicker and reach a higher chance of project completion.\r\n\r\nMost IT consultants have degrees in Informatic, Electrical, Network Protection, Cloud, Supply Chain and related disciplines. All have worked in the area of app production with a wide range of platforms and speeches. So QualStream does not hire a sole engineer but a network of experts to guarantee that you first accomplish a solid concept. We work for a range of frameworks and frameworks and conduct architecture, design , development, porting and tuning and frameworks management – and map into any process of the software engineering cycle so that we can step in and facilitate execution and business performance at every point of the project.[/vc_column_text][/vc_column][/vc_row]', 'Consulting', '', 'publish', 'closed', 'closed', '', 'consulting', '', '', '2021-04-21 06:16:56', '2021-04-21 06:16:56', '', 0, 'https://qualstream.net/?page_id=7080', 0, 'page', '', 0),
(7081, 1, '2021-04-16 11:16:40', '2021-04-16 11:16:40', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Full Time Staffing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618571233090{padding-left: 20px !important;}\"]Searching and recruiting a full-time employee can be a difficult job.The time and effort spent on research, posts and recruitment will cost your company a lot of time and money. At AlphaQual we already have a pool of professional and qualified workers who we’ve been waiting for the best place.Working alongside our AlphaQual Resources team helps you to concentrate on your day-to-day duties, and we will bring the best applicants to you at the right time.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Direct Hire Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Better Candidates</li>\r\n 	<li>Strong Commitment</li>\r\n 	<li>Decreased Risks</li>\r\n 	<li>Less down-time</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]\r\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\r\n<div class=\"wpb_wrapper\">\r\n\r\nMaking sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\n<strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-16 11:16:40', '2021-04-16 11:16:40', '', 7080, 'https://qualstream.net/?p=7081', 0, 'revision', '', 0),
(7082, 1, '2021-04-16 11:18:28', '2021-04-16 11:18:28', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Consulting</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571898311{padding-left: 20px !important;}\"]AlphaQual provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.</p>\n<p>Nearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Direct Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Better Candidates</li>\n<li>Strong Commitment</li>\n<li>Decreased Risks</li>\n<li>Less down-time</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]</p>\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\n<div class=\"wpb_wrapper\">\n<p>Making sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<p><strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong></div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-16 11:18:28', '2021-04-16 11:18:28', '', 7080, 'https://qualstream.net/?p=7082', 0, 'revision', '', 0),
(7083, 1, '2021-04-16 11:19:15', '2021-04-16 11:19:15', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Consulting</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571951669{padding-left: 20px !important;}\"]QualStream provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.</p>\n<p>Nearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Direct Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Better Candidates</li>\n<li>Strong Commitment</li>\n<li>Decreased Risks</li>\n<li>Less down-time</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]</p>\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\n<div class=\"wpb_wrapper\">\n<p>Making sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<p><strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong></div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-16 11:19:15', '2021-04-16 11:19:15', '', 7080, 'https://qualstream.net/?p=7083', 0, 'revision', '', 0),
(7084, 1, '2021-04-16 11:20:56', '2021-04-16 11:20:56', '', 'consulting', '', 'inherit', 'open', 'closed', '', 'consulting-2', '', '', '2021-04-16 11:20:56', '2021-04-16 11:20:56', '', 7080, 'https://qualstream.net/wp-content/uploads/2021/04/consulting.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7085, 1, '2021-04-16 11:21:11', '2021-04-16 11:21:11', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Consulting</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571951669{padding-left: 20px !important;}\"]QualStream provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.</p>\n<p>Nearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7084\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Direct Hire Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Better Candidates</li>\n<li>Strong Commitment</li>\n<li>Decreased Risks</li>\n<li>Less down-time</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]</p>\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\n<div class=\"wpb_wrapper\">\n<p>Making sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n<p><strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong></div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-16 11:21:11', '2021-04-16 11:21:11', '', 7080, 'https://qualstream.net/?p=7085', 0, 'revision', '', 0),
(7086, 1, '2021-04-16 11:22:33', '2021-04-16 11:22:33', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Consulting</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571951669{padding-left: 20px !important;}\"]QualStream provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.</p>\n<p>Nearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7084\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618572144666{padding-left: 20px !important;}\"]Such recommendations can be split into a range of primary regions. These provide the assistance of hardware engineering, programme administration and enterprise architecture assistance. There are also divisions within both of these specialisation regions. Each and every sector of the market is still sponsored by our business.</p>\n<p>With the vast variety of specialties that continue to develop daily in the IT consultancy industry, consultants may characterize their employment from a hardware repair specialist to an expert in business analysis. This is a special environment where various IT experts are already well versed in the business sector.</p>\n<p>We therefore grow our goods and services rapidly for our customers. We balance the need for a swift solution with the need to incorporate other technology and we are backed and sustained by real-world practice. The select selection of IT programs tailored to help companies implement key goals easily and cost-efficiently complete our product development, engineering teams.</p>\n<p>We will provide the best supply approach to fulfill the constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centres and benefit from our industry-specific and decentralised account management that facilitates fulfilment satisfaction. With access to the “Knowledge Base” expertise expertise of AlphaQaul, our teams are<br />\nable to complete the project quicker and reach a higher chance of project completion.</p>\n<p>Most IT consultants have degrees in Informatic, Electrical, Network Protection, Cloud, Supply Chain and related disciplines. All have worked in the area of app production with a wide range of platforms and speeches. So AlphaQual does not hire a sole engineer but a network of experts to guarantee that you first accomplish a solid concept. We work for a range of frameworks and frameworks and conduct architecture, design , development, porting and tuning and frameworks management – and map into any process of the software engineering cycle so that we can step in and facilitate execution and business performance at every point of the project.[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-16 11:22:33', '2021-04-16 11:22:33', '', 7080, 'https://qualstream.net/?p=7086', 0, 'revision', '', 0),
(7087, 1, '2021-04-20 06:27:16', '2021-04-20 06:27:16', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'publish', 'closed', 'closed', '', 'financial-and-banking', '', '', '2021-04-20 10:17:43', '2021-04-20 10:17:43', '', 0, 'https://qualstream.net/?page_id=7087', 0, 'page', '', 0),
(7088, 1, '2021-04-20 06:27:16', '2021-04-20 06:27:16', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Contract Staffing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.</p>\n<p>With QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Cost Savings</li>\n<li>Quality of Staff</li>\n<li>Time And Flexibility</li>\n<li>Match Staffing levels with your workland</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Contract Staffing', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 06:27:16', '2021-04-20 06:27:16', '', 7087, 'https://qualstream.net/?p=7088', 0, 'revision', '', 0),
(7089, 1, '2021-04-22 07:30:05', '2021-04-20 06:28:29', ' ', '', '', 'publish', 'closed', 'closed', '', '7089', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7089', 9, 'nav_menu_item', '', 0),
(7090, 1, '2021-04-20 06:34:45', '2021-04-20 06:34:45', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Contract Staffing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618569782806{padding-left: 20px !important;}\"]QualStream Technologies makes it easy for us to adapt efficiently to the continuously increasing and demanding latest contract recruiting and market conditions for IT as well as other business processes. We provide our clients with personalised service on call,just in time, flexible workforce raise and the right guidance to help them focus on their core business in the field of contract hiring.Our efforts are to provide employment to optimise productive workforce efficiency.If you are a small to mid-sized business and do not want to go through the process of hiring, retaining and providing benefits and paying taxes for a full time employee working in your office then QualStream Technologies has the perfect solution for you to solve your IT and business requirements.[/vc_column_text][vc_column_text css=\".vc_custom_1618569855603{padding-left: 20px !important;}\"]QualStream is committed to ensuring that its clients are provided with highly trained experts and to upholding the highest degree of  quality in contract work. It is our account manager who strives to help our clients to consider the expertise and experience ideally equipped for such contract positions and the specific needs of their customers. We offer a specified list of candidates who satisfy our client’s criteria, the hourly pay rate and limit the competition to just a few candidates.\r\n\r\nWith QualStream you will be hiring a Full time employee or virtual staff without any need to setup an expensive office place, pay for leaves or vacations, health benefits, travel expense, employment taxes, etc. Time Efficient: Our virtual staff is dedicated to you and will have expertise and experience in their respective fields. They are time bound individuals, working towards meeting your business needs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Contract Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Cost Savings</li>\r\n 	<li>Quality of Staff</li>\r\n 	<li>Time And Flexibility</li>\r\n 	<li>Match Staffing levels with your workland</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 06:34:45', '2021-04-20 06:34:45', '', 7087, 'https://qualstream.net/?p=7090', 0, 'revision', '', 0),
(7091, 1, '2021-04-20 06:42:06', '2021-04-20 06:42:06', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Financial and Banking</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Cost Savings</li>\n<li>Quality of Staff</li>\n<li>Time And Flexibility</li>\n<li>Match Staffing levels with your workland</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 06:42:06', '2021-04-20 06:42:06', '', 7087, 'https://qualstream.net/?p=7091', 0, 'revision', '', 0),
(7093, 1, '2021-04-20 06:54:38', '2021-04-20 06:54:38', '', 'it-solutions-bank', '', 'inherit', 'open', 'closed', '', 'it-solutions-bank', '', '', '2021-04-20 06:54:38', '2021-04-20 06:54:38', '', 7087, 'https://qualstream.net/wp-content/uploads/2021/04/it-solutions-bank.jpg', 0, 'attachment', 'image/jpeg', 0),
(7094, 1, '2021-04-20 06:55:12', '2021-04-20 06:55:12', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Financial and Banking</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Benefits of Contract Staffing:</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618569966816{padding-left: 20px !important;}\"]</p>\n<ul>\n<li>Cost Savings</li>\n<li>Quality of Staff</li>\n<li>Time And Flexibility</li>\n<li>Match Staffing levels with your workland</li>\n</ul>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7063\" img_size=\"full\" css=\".vc_custom_1618570076366{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 06:55:12', '2021-04-20 06:55:12', '', 7087, 'https://qualstream.net/?p=7094', 0, 'revision', '', 0),
(7095, 1, '2021-04-20 07:04:24', '2021-04-20 07:04:24', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Financial and Banking</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Technology Solutions Offering</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1618902109604{background-image: url(https://qualstream.net/wp-content/uploads/revslider/demo_slide_1.jpg?id=6888) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box title=\"General\"]</p>\n<ul>\n<li>Reseller of IBM Software [New and Renewal] along with PROMOTIONS</li>\n<li>IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</li>\n<li>Migration &amp; Upgrade of various products</li>\n<li>Maintenance Support</li>\n</ul>\n<p>[/stm_info_box][stm_info_box title=\"General\"]</p>\n<ul>\n<li>Reseller of IBM Software [New and Renewal] along with PROMOTIONS</li>\n<li>IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</li>\n<li>Migration &amp; Upgrade of various products</li>\n<li>Maintenance Support</li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box title=\"General\"]</p>\n<ul>\n<li>Reseller of IBM Software [New and Renewal] along with PROMOTIONS</li>\n<li>IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</li>\n<li>Migration &amp; Upgrade of various products</li>\n<li>Maintenance Support</li>\n</ul>\n<p>[/stm_info_box][stm_info_box title=\"General\"]</p>\n<ul>\n<li>Reseller of IBM Software [New and Renewal] along with PROMOTIONS</li>\n<li>IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</li>\n<li>Migration &amp; Upgrade of various products</li>\n<li>Maintenance Support</li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:04:24', '2021-04-20 07:04:24', '', 7087, 'https://qualstream.net/?p=7095', 0, 'revision', '', 0),
(7096, 1, '2021-04-20 07:14:22', '2021-04-20 07:14:22', '', 'technology-offerings', '', 'inherit', 'open', 'closed', '', 'technology-offerings', '', '', '2021-04-20 07:14:22', '2021-04-20 07:14:22', '', 7087, 'https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg', 0, 'attachment', 'image/jpeg', 0),
(7097, 1, '2021-04-20 07:26:26', '2021-04-20 07:26:26', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Financial and Banking</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Technology Solutions Offering</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1618902870306{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:26:26', '2021-04-20 07:26:26', '', 7087, 'https://qualstream.net/?p=7097', 0, 'revision', '', 0),
(7098, 1, '2021-04-20 07:27:43', '2021-04-20 07:27:43', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618902870306{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:27:43', '2021-04-20 07:27:43', '', 7087, 'https://qualstream.net/?p=7098', 0, 'revision', '', 0),
(7099, 1, '2021-04-20 07:28:27', '2021-04-20 07:28:27', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618902870306{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:28:27', '2021-04-20 07:28:27', '', 7087, 'https://qualstream.net/?p=7099', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7100, 1, '2021-04-20 10:12:10', '2021-04-20 10:12:10', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Financial and Banking</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\nwith PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">BigData</span></li>\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-autosave-v1', '', '', '2021-04-20 10:12:10', '2021-04-20 10:12:10', '', 7087, 'https://qualstream.net/?p=7100', 0, 'revision', '', 0),
(7101, 1, '2021-04-20 07:29:21', '2021-04-20 07:29:21', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618903757020{padding-top: 100px !important;padding-bottom: 100px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:29:21', '2021-04-20 07:29:21', '', 7087, 'https://qualstream.net/?p=7101', 0, 'revision', '', 0),
(7102, 1, '2021-04-20 07:29:54', '2021-04-20 07:29:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:29:54', '2021-04-20 07:29:54', '', 7087, 'https://qualstream.net/?p=7102', 0, 'revision', '', 0),
(7103, 1, '2021-04-20 07:32:19', '2021-04-20 07:32:19', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:32:19', '2021-04-20 07:32:19', '', 7087, 'https://qualstream.net/?p=7103', 0, 'revision', '', 0),
(7104, 1, '2021-04-20 07:32:57', '2021-04-20 07:32:57', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 07:32:57', '2021-04-20 07:32:57', '', 7087, 'https://qualstream.net/?p=7104', 0, 'revision', '', 0),
(7105, 1, '2021-04-20 08:15:44', '2021-04-20 08:15:44', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906536388{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: right;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618903660538{padding-top: 40px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618903790444{padding-top: 50px !important;padding-bottom: 50px !important;background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:15:44', '2021-04-20 08:15:44', '', 7087, 'https://qualstream.net/?p=7105', 0, 'revision', '', 0),
(7106, 1, '2021-04-20 08:15:58', '2021-04-20 08:15:58', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906536388{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: right;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:15:58', '2021-04-20 08:15:58', '', 7087, 'https://qualstream.net/?p=7106', 0, 'revision', '', 0),
(7107, 1, '2021-04-20 08:17:29', '2021-04-20 08:17:29', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column][vc_row_inner][vc_column_inner][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:17:29', '2021-04-20 08:17:29', '', 7087, 'https://qualstream.net/?p=7107', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7108, 1, '2021-04-20 08:18:05', '2021-04-20 08:18:05', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906681206{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:18:05', '2021-04-20 08:18:05', '', 7087, 'https://qualstream.net/?p=7108', 0, 'revision', '', 0),
(7109, 1, '2021-04-20 08:18:42', '2021-04-20 08:18:42', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:18:42', '2021-04-20 08:18:42', '', 7087, 'https://qualstream.net/?p=7109', 0, 'revision', '', 0),
(7110, 1, '2021-04-20 08:19:18', '2021-04-20 08:19:18', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:19:18', '2021-04-20 08:19:18', '', 7087, 'https://qualstream.net/?p=7110', 0, 'revision', '', 0),
(7111, 1, '2021-04-20 08:19:37', '2021-04-20 08:19:37', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:19:37', '2021-04-20 08:19:37', '', 7087, 'https://qualstream.net/?p=7111', 0, 'revision', '', 0),
(7113, 1, '2021-04-20 08:20:59', '2021-04-20 08:20:59', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 08:20:59', '2021-04-20 08:20:59', '', 6926, 'https://qualstream.net/?p=7113', 0, 'revision', '', 0),
(7114, 1, '2021-04-20 08:21:20', '2021-04-20 08:21:20', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 08:21:20', '2021-04-20 08:21:20', '', 7087, 'https://qualstream.net/?p=7114', 0, 'revision', '', 0),
(7116, 1, '2021-04-20 08:22:31', '2021-04-20 08:22:31', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #fde428;\n}\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 08:22:31', '2021-04-20 08:22:31', '', 6926, 'https://qualstream.net/?p=7116', 0, 'revision', '', 0),
(7118, 1, '2021-04-20 08:22:52', '2021-04-20 08:22:52', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 08:22:52', '2021-04-20 08:22:52', '', 6926, 'https://qualstream.net/?p=7118', 0, 'revision', '', 0),
(7120, 1, '2021-04-20 08:24:47', '2021-04-20 08:24:47', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n.page-id-7087 #main {\n    padding: 0px;\n}\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 08:24:47', '2021-04-20 08:24:47', '', 6926, 'https://qualstream.net/?p=7120', 0, 'revision', '', 0),
(7121, 1, '2021-04-20 08:30:33', '2021-04-20 08:30:33', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7191\" img_size=\"full\" css=\".vc_custom_1618915103001{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'publish', 'closed', 'closed', '', 'energy-and-utility', '', '', '2021-04-20 10:39:17', '2021-04-20 10:39:17', '', 0, 'https://qualstream.net/?page_id=7121', 0, 'page', '', 0),
(7122, 1, '2021-04-20 08:30:33', '2021-04-20 08:30:33', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 08:30:33', '2021-04-20 08:30:33', '', 7121, 'https://qualstream.net/?p=7122', 0, 'revision', '', 0),
(7123, 1, '2021-04-20 10:30:58', '2021-04-20 10:30:58', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Energy and Utility</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\nwith PROMOTIONS</span></li>\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n[/stm_info_box][vc_empty_space][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-autosave-v1', '', '', '2021-04-20 10:30:58', '2021-04-20 10:30:58', '', 7121, 'https://qualstream.net/?p=7123', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7124, 1, '2021-04-20 08:37:30', '2021-04-20 08:37:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture Framework set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">SOA Governance Set-up &amp; Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 08:37:30', '2021-04-20 08:37:30', '', 7121, 'https://qualstream.net/?p=7124', 0, 'revision', '', 0),
(7125, 1, '2021-04-20 08:38:25', '2021-04-20 08:38:25', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture Framework set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">SOA Governance Set-up &amp; Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 08:38:25', '2021-04-20 08:38:25', '', 7121, 'https://qualstream.net/?p=7125', 0, 'revision', '', 0),
(7126, 1, '2021-04-20 08:39:30', '2021-04-20 08:39:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7195\" img_size=\"full\" css=\".vc_custom_1618915455482{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"81px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'publish', 'closed', 'closed', '', 'health-care', '', '', '2021-04-20 10:48:01', '2021-04-20 10:48:01', '', 0, 'https://qualstream.net/?page_id=7126', 0, 'page', '', 0),
(7127, 1, '2021-04-20 08:39:30', '2021-04-20 08:39:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:39:30', '2021-04-20 08:39:30', '', 7126, 'https://qualstream.net/?p=7127', 0, 'revision', '', 0),
(7128, 1, '2021-04-20 08:49:30', '2021-04-20 08:49:30', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Health Care</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.<br />\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.<br />\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>We Deliver Custom Medical IT Solutions</h4>\n</blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">BigData</span></li>\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\n<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\n<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-autosave-v1', '', '', '2021-04-20 08:49:30', '2021-04-20 08:49:30', '', 7126, 'https://qualstream.net/?p=7128', 0, 'revision', '', 0),
(7129, 1, '2021-04-20 08:42:49', '2021-04-20 08:42:49', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1618908059514{padding-top: 10px !important;padding-left: 20px !important;}\"]<span style=\"color: #ffffff;\">The ability to offer consumers more choices for quality healthcare coverage at affordable premiums is a win-win scenario for everyone involved.</span>\r\n<span style=\"color: #ffffff;\">Do we have years of experience working with payers and providers? Check. Do our employees have technical expertise in many of the leading legacy and emerging technologies relevant to healthcare companies? Check. Our teams of dedicated, experienced people have successfully implemented projects involving Big Data and Analytics, Population Health, and Patient and Member Portals.</span>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:42:49', '2021-04-20 08:42:49', '', 7126, 'https://qualstream.net/?p=7129', 0, 'revision', '', 0),
(7130, 1, '2021-04-20 08:43:30', '2021-04-20 08:43:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1618908059514{padding-top: 10px !important;padding-left: 20px !important;}\"]<span style=\"color: #ffffff;\">The ability to offer consumers more choices for quality healthcare coverage at affordable premiums is a win-win scenario for everyone involved.</span>\r\n<span style=\"color: #ffffff;\">Do we have years of experience working with payers and providers? Check. Do our employees have technical expertise in many of the leading legacy and emerging technologies relevant to healthcare companies? Check. Our teams of dedicated, experienced people have successfully implemented projects involving Big Data and Analytics, Population Health, and Patient and Member Portals.</span>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:43:30', '2021-04-20 08:43:30', '', 7126, 'https://qualstream.net/?p=7130', 0, 'revision', '', 0),
(7131, 1, '2021-04-20 08:44:23', '2021-04-20 08:44:23', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1618908260574{padding-top: 10px !important;padding-left: 20px !important;}\"]<span style=\"color: #000000;\">The ability to offer consumers more choices for quality healthcare coverage at affordable premiums is a win-win scenario for everyone involved.</span>\r\n<span style=\"color: #000000;\">Do we have years of experience working with payers and providers? Check. Do our employees have technical expertise in many of the leading legacy and emerging technologies relevant to healthcare companies? Check. Our teams of dedicated, experienced people have successfully implemented projects involving Big Data and Analytics, Population Health, and Patient and Member Portals.</span>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:44:23', '2021-04-20 08:44:23', '', 7126, 'https://qualstream.net/?p=7131', 0, 'revision', '', 0),
(7132, 1, '2021-04-20 08:44:59', '2021-04-20 08:44:59', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:44:59', '2021-04-20 08:44:59', '', 7126, 'https://qualstream.net/?p=7132', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7133, 1, '2021-04-20 08:45:21', '2021-04-20 08:45:21', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:45:21', '2021-04-20 08:45:21', '', 7126, 'https://qualstream.net/?p=7133', 0, 'revision', '', 0),
(7134, 1, '2021-04-20 08:46:33', '2021-04-20 08:46:33', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We Deliver Custom Medical IT Solutions\" css=\".vc_custom_1618908387246{padding-left: 20px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:46:33', '2021-04-20 08:46:33', '', 7126, 'https://qualstream.net/?p=7134', 0, 'revision', '', 0),
(7135, 1, '2021-04-20 08:47:20', '2021-04-20 08:47:20', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:47:20', '2021-04-20 08:47:20', '', 7126, 'https://qualstream.net/?p=7135', 0, 'revision', '', 0),
(7136, 1, '2021-04-20 08:49:48', '2021-04-20 08:49:48', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:49:48', '2021-04-20 08:49:48', '', 7126, 'https://qualstream.net/?p=7136', 0, 'revision', '', 0),
(7137, 1, '2021-04-20 08:50:54', '2021-04-20 08:50:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:50:54', '2021-04-20 08:50:54', '', 7126, 'https://qualstream.net/?p=7137', 0, 'revision', '', 0),
(7138, 1, '2021-04-20 08:51:33', '2021-04-20 08:51:33', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:51:33', '2021-04-20 08:51:33', '', 7126, 'https://qualstream.net/?p=7138', 0, 'revision', '', 0),
(7139, 1, '2021-04-20 08:52:28', '2021-04-20 08:52:28', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 08:52:28', '2021-04-20 08:52:28', '', 7126, 'https://qualstream.net/?p=7139', 0, 'revision', '', 0),
(7140, 1, '2021-04-20 08:54:08', '2021-04-20 08:54:08', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7205\" img_size=\"full\" css=\".vc_custom_1618916386335{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'publish', 'closed', 'closed', '', 'industrial-manufacturing', '', '', '2021-04-20 11:00:54', '2021-04-20 11:00:54', '', 0, 'https://qualstream.net/?page_id=7140', 0, 'page', '', 0),
(7141, 1, '2021-04-20 08:54:08', '2021-04-20 08:54:08', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 08:54:08', '2021-04-20 08:54:08', '', 7140, 'https://qualstream.net/?p=7141', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7142, 1, '2021-04-20 10:54:39', '2021-04-20 10:54:39', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Industrial Manufacturing</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.<br />\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.<br />\nThese changes will happen whether we want them to or not.<br />\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\nwith PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">BigData</span></li>\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\n', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-autosave-v1', '', '', '2021-04-20 10:54:39', '2021-04-20 10:54:39', '', 7140, 'https://qualstream.net/?p=7142', 0, 'revision', '', 0),
(7143, 1, '2021-04-20 08:57:59', '2021-04-20 08:57:59', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\r\n\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 08:57:59', '2021-04-20 08:57:59', '', 7140, 'https://qualstream.net/?p=7143', 0, 'revision', '', 0),
(7144, 1, '2021-04-20 09:04:43', '2021-04-20 09:04:43', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Engineering Facility With Modern IT\" css=\".vc_custom_1618909229937{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7210\" img_size=\"full\" css=\".vc_custom_1618916861169{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618909259938{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Engineering', '', 'publish', 'closed', 'closed', '', 'engineering', '', '', '2021-04-20 11:08:01', '2021-04-20 11:08:01', '', 0, 'https://qualstream.net/?page_id=7144', 0, 'page', '', 0),
(7145, 1, '2021-04-20 09:04:43', '2021-04-20 09:04:43', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Engineering Facility With Modern IT\r\n\" css=\".vc_custom_1618909229937{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618909259938{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Engineering', '', 'inherit', 'closed', 'closed', '', '7144-revision-v1', '', '', '2021-04-20 09:04:43', '2021-04-20 09:04:43', '', 7144, 'https://qualstream.net/?p=7145', 0, 'revision', '', 0),
(7146, 1, '2021-04-20 09:22:54', '2021-04-20 09:22:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Insurance</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}\"]In recent years the market share of traditional insurers has been under attack by a variety of forces Internet disintermediation, new competition from untraditional sources, deregulation, compliance pressures and customer empowerment to transform traditional insurance companies into customer-centric organizations. These marketplace dynamics are creating new opportunities, however adopting right technologies and right partner is critical in achieving the results by cutting the costs at the same time.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7215\" img_size=\"full\" css=\".vc_custom_1618917173790{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'publish', 'closed', 'closed', '', 'insurance', '', '', '2021-04-20 11:13:14', '2021-04-20 11:13:14', '', 0, 'https://qualstream.net/?page_id=7146', 0, 'page', '', 0),
(7147, 1, '2021-04-20 09:22:54', '2021-04-20 09:22:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'inherit', 'closed', 'closed', '', '7146-revision-v1', '', '', '2021-04-20 09:22:54', '2021-04-20 09:22:54', '', 7146, 'https://qualstream.net/?p=7147', 0, 'revision', '', 0),
(7149, 1, '2021-04-20 09:25:15', '2021-04-20 09:25:15', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Insurance</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}\"]In recent years the market share of traditional insurers has been under attack by a variety of forces Internet disintermediation, new competition from untraditional sources, deregulation, compliance pressures and customer empowerment to transform traditional insurance companies into customer-centric organizations. These marketplace dynamics are creating new opportunities, however adopting right technologies and right partner is critical in achieving the results by cutting the costs at the same time.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'inherit', 'closed', 'closed', '', '7146-revision-v1', '', '', '2021-04-20 09:25:15', '2021-04-20 09:25:15', '', 7146, 'https://qualstream.net/?p=7149', 0, 'revision', '', 0),
(7150, 1, '2021-04-20 09:30:11', '2021-04-20 09:30:11', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Media And Telecom</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Our IT Solutions Can Put You Ahead Of Other Carriers\" css=\".vc_custom_1618910859455{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}\"]The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.\r\nCarriers will continue to focus on providing data and voice services that are high quality, reliable, and affordable. As data usage from mobile users continues to increase, the corresponding demand will force carriers to invest in upgrades to their core connectivity and data storage infrastructures. Those upgrades will also be necessary over the next few years as carriers shift to the 5th Generation (5G) mobile networks along with handling the needs of the next generations of smartphones.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7219\" img_size=\"full\" css=\".vc_custom_1618917619699{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618910883658{padding-top: 10px !important;}\"]<strong>Can you hear me now?</strong>\r\nAs those carriers look to remain competitive in a crowded field, the need for improvement in areas such as operations becomes a need rather than a want. Numerous telecoms are still heavily reliant on outdated manual processes. With the availability of new technologies and innovations, the future is now when it comes to digital transformation for carriers in both the U.S. and around the globe.\r\nWe are forecasting customer care, sales, and billing as the areas which would have the greatest potential benefit from digital improvement.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Media and Telecom', '', 'publish', 'closed', 'closed', '', 'media-and-telecom', '', '', '2021-04-20 11:28:04', '2021-04-20 11:28:04', '', 0, 'https://qualstream.net/?page_id=7150', 0, 'page', '', 0),
(7151, 1, '2021-04-20 09:30:11', '2021-04-20 09:30:11', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Media And Telecom</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Our IT Solutions Can Put You Ahead Of Other Carriers\r\n\" css=\".vc_custom_1618910859455{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}\"]The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.\r\nCarriers will continue to focus on providing data and voice services that are high quality, reliable, and affordable. As data usage from mobile users continues to increase, the corresponding demand will force carriers to invest in upgrades to their core connectivity and data storage infrastructures. Those upgrades will also be necessary over the next few years as carriers shift to the 5th Generation (5G) mobile networks along with handling the needs of the next generations of smartphones.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618910883658{padding-top: 10px !important;}\"]<strong>Can you hear me now?</strong>\r\nAs those carriers look to remain competitive in a crowded field, the need for improvement in areas such as operations becomes a need rather than a want. Numerous telecoms are still heavily reliant on outdated manual processes. With the availability of new technologies and innovations, the future is now when it comes to digital transformation for carriers in both the U.S. and around the globe.\r\nWe are forecasting customer care, sales, and billing as the areas which would have the greatest potential benefit from digital improvement.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture Framework set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">SOA Governance Set-up &amp; Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Media and Telecom', '', 'inherit', 'closed', 'closed', '', '7150-revision-v1', '', '', '2021-04-20 09:30:11', '2021-04-20 09:30:11', '', 7150, 'https://qualstream.net/?p=7151', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7153, 1, '2021-04-20 09:35:16', '2021-04-20 09:35:16', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Airline Travel Logistics</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}\"]It is a known fact that more than two-thirds of the planet is covered by water and that more than 80% of all finished goods and raw materials traded globally is shipped through sea. Be it dry, wet or containerized cargo, commercial shipping industry remains the enabler and backbone of international trade and commerce.\r\n\r\nCustomer satisfaction has been the most common and valued Key Performance Indicator across industries. Achieving this KPI requires optimized integration of resources, processes, relationships, tools and techniques within the extended enterprise – that spans across the supply chain.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7223\" img_size=\"full\" css=\".vc_custom_1618918156466{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Airline Travel Logistics', '', 'publish', 'closed', 'closed', '', 'airline-travel-logistics', '', '', '2021-04-20 11:29:45', '2021-04-20 11:29:45', '', 0, 'https://qualstream.net/?page_id=7153', 0, 'page', '', 0),
(7154, 1, '2021-04-20 09:35:16', '2021-04-20 09:35:16', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Airline Travel Logistics', '', 'inherit', 'closed', 'closed', '', '7153-revision-v1', '', '', '2021-04-20 09:35:16', '2021-04-20 09:35:16', '', 7153, 'https://qualstream.net/?p=7154', 0, 'revision', '', 0),
(7156, 1, '2021-04-20 09:37:30', '2021-04-20 09:37:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Airline Travel Logistics</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}\"]It is a known fact that more than two-thirds of the planet is covered by water and that more than 80% of all finished goods and raw materials traded globally is shipped through sea. Be it dry, wet or containerized cargo, commercial shipping industry remains the enabler and backbone of international trade and commerce.\r\n\r\nCustomer satisfaction has been the most common and valued Key Performance Indicator across industries. Achieving this KPI requires optimized integration of resources, processes, relationships, tools and techniques within the extended enterprise – that spans across the supply chain.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture Framework set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">SOA Governance Set-up &amp; Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Airline Travel Logistics', '', 'inherit', 'closed', 'closed', '', '7153-revision-v1', '', '', '2021-04-20 09:37:30', '2021-04-20 09:37:30', '', 7153, 'https://qualstream.net/?p=7156', 0, 'revision', '', 0),
(7157, 1, '2021-04-20 09:40:18', '2021-04-20 09:40:18', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consumer and Retail</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We know Retail IT\" css=\".vc_custom_1618911656485{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}\"]In the retail game, it’s all about connecting with your customers. The retail industry has found itself riding the wave of the digital evolution for the past few years because of the manner in which technology developed has allowed us to foster stronger connections with customers and potential customers anytime and anyplace.\r\nCustomer-driven retailers who have analyzed and understood the buying behaviors and patterns of their customers and then use that knowledge to craft a targeted buying experience that focuses on customers’ needs will continue to rule the day. Offering relevant products and services while connecting with customers and fostering brand loyalty has become the norm.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7226\" img_size=\"full\" css=\".vc_custom_1618918510667{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Gain an Edge With Analytics &amp; Big Data</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_column_text]<strong>How can you compete within this industry without access to advanced analytics fueled by big data?</strong>\r\nThe ultimate goal for retailers is to continue to leverage that valuable customer data into meaningful and actionable insights that then create a unique and memorable shopping experience.\r\nIt is critical for businesses within this sector to embrace digital technologies such as mobile, big data, and analytics along with crafting a brand that is different from the competition to attract and retain the millennial and the linkster generations, improve customer loyalty and retention, enhance channel operations, and increase market share. Ultimately e-commerce sales will continue to outpace traditional brick-and-mortar experiences, and retail businesses need to be positioned properly to make the most of this transition or be left by the wayside.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'publish', 'closed', 'closed', '', 'consumer-and-retail', '', '', '2021-04-20 11:35:28', '2021-04-20 11:35:28', '', 0, 'https://qualstream.net/?page_id=7157', 0, 'page', '', 0),
(7158, 1, '2021-04-20 09:40:18', '2021-04-20 09:40:18', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.\r\n\r\nHowever, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.\r\n\r\nOur teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'inherit', 'closed', 'closed', '', '7157-revision-v1', '', '', '2021-04-20 09:40:18', '2021-04-20 09:40:18', '', 7157, 'https://qualstream.net/?p=7158', 0, 'revision', '', 0),
(7159, 1, '2021-04-20 11:35:36', '2021-04-20 11:35:36', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Consumer and Retail</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We know Retail IT\" css=\".vc_custom_1618911656485{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}\"]In the retail game, it’s all about connecting with your customers. The retail industry has found itself riding the wave of the digital evolution for the past few years because of the manner in which technology developed has allowed us to foster stronger connections with customers and potential customers anytime and anyplace.\nCustomer-driven retailers who have analyzed and understood the buying behaviors and patterns of their customers and then use that knowledge to craft a targeted buying experience that focuses on customers’ needs will continue to rule the day. Offering relevant products and services while connecting with customers and fostering brand loyalty has become the norm.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7226\" img_size=\"full\" css=\".vc_custom_1618918510667{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4 style=\"text-align: left;\">Gain an Edge With Analytics &amp; Big Data</h4>\n</blockquote>\n[/vc_column_text][vc_column_text]<strong>How can you compete within this industry without access to advanced analytics fueled by big data?</strong>\nThe ultimate goal for retailers is to continue to leverage that valuable customer data into meaningful and actionable insights that then create a unique and memorable shopping experience.\nIt is critical for businesses within this sector to embrace digital technologies such as mobile, big data, and analytics along with crafting a brand that is different from the competition to attract and retain the millennial and the linkster generations, improve customer loyalty and retention, enhance channel operations, and increase market share. Ultimately e-commerce sales will continue to outpace traditional brick-and-mortar experiences, and retail businesses need to be positioned properly to make the most of this transition or be left by the wayside.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\nwith PROMOTIONS</span></li>\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n[/stm_info_box][vc_empty_space][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'inherit', 'closed', 'closed', '', '7157-autosave-v1', '', '', '2021-04-20 11:35:36', '2021-04-20 11:35:36', '', 7157, 'https://qualstream.net/?p=7159', 0, 'revision', '', 0),
(7160, 1, '2021-04-20 09:42:48', '2021-04-20 09:42:48', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consumer and Retail</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We know Retail IT\" css=\".vc_custom_1618911656485{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}\"]In the retail game, it’s all about connecting with your customers. The retail industry has found itself riding the wave of the digital evolution for the past few years because of the manner in which technology developed has allowed us to foster stronger connections with customers and potential customers anytime and anyplace.\r\nCustomer-driven retailers who have analyzed and understood the buying behaviors and patterns of their customers and then use that knowledge to craft a targeted buying experience that focuses on customers’ needs will continue to rule the day. Offering relevant products and services while connecting with customers and fostering brand loyalty has become the norm.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Gain an Edge With Analytics &amp; Big Data</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1618911734081{padding-top: 10px !important;}\"]<strong>How can you compete within this industry without access to advanced analytics fueled by big data?</strong>\r\nThe ultimate goal for retailers is to continue to leverage that valuable customer data into meaningful and actionable insights that then create a unique and memorable shopping experience.\r\nIt is critical for businesses within this sector to embrace digital technologies such as mobile, big data, and analytics along with crafting a brand that is different from the competition to attract and retain the millennial and the linkster generations, improve customer loyalty and retention, enhance channel operations, and increase market share. Ultimately e-commerce sales will continue to outpace traditional brick-and-mortar experiences, and retail businesses need to be positioned properly to make the most of this transition or be left by the wayside.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'inherit', 'closed', 'closed', '', '7157-revision-v1', '', '', '2021-04-20 09:42:48', '2021-04-20 09:42:48', '', 7157, 'https://qualstream.net/?p=7160', 0, 'revision', '', 0),
(7161, 1, '2021-04-20 09:44:11', '2021-04-20 09:44:11', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consumer and Retail</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We know Retail IT\" css=\".vc_custom_1618911656485{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}\"]In the retail game, it’s all about connecting with your customers. The retail industry has found itself riding the wave of the digital evolution for the past few years because of the manner in which technology developed has allowed us to foster stronger connections with customers and potential customers anytime and anyplace.\r\nCustomer-driven retailers who have analyzed and understood the buying behaviors and patterns of their customers and then use that knowledge to craft a targeted buying experience that focuses on customers’ needs will continue to rule the day. Offering relevant products and services while connecting with customers and fostering brand loyalty has become the norm.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Gain an Edge With Analytics &amp; Big Data</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_column_text]<strong>How can you compete within this industry without access to advanced analytics fueled by big data?</strong>\r\nThe ultimate goal for retailers is to continue to leverage that valuable customer data into meaningful and actionable insights that then create a unique and memorable shopping experience.\r\nIt is critical for businesses within this sector to embrace digital technologies such as mobile, big data, and analytics along with crafting a brand that is different from the competition to attract and retain the millennial and the linkster generations, improve customer loyalty and retention, enhance channel operations, and increase market share. Ultimately e-commerce sales will continue to outpace traditional brick-and-mortar experiences, and retail businesses need to be positioned properly to make the most of this transition or be left by the wayside.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'inherit', 'closed', 'closed', '', '7157-revision-v1', '', '', '2021-04-20 09:44:11', '2021-04-20 09:44:11', '', 7157, 'https://qualstream.net/?p=7161', 0, 'revision', '', 0),
(7162, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7162', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7162', 11, 'nav_menu_item', '', 0),
(7163, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7163', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7163', 19, 'nav_menu_item', '', 0),
(7164, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7164', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7164', 18, 'nav_menu_item', '', 0),
(7165, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7165', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7165', 17, 'nav_menu_item', '', 0),
(7166, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7166', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7166', 16, 'nav_menu_item', '', 0),
(7167, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7167', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7167', 15, 'nav_menu_item', '', 0),
(7168, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7168', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7168', 14, 'nav_menu_item', '', 0),
(7169, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7169', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7169', 13, 'nav_menu_item', '', 0),
(7170, 1, '2021-04-22 07:30:05', '2021-04-20 09:47:48', ' ', '', '', 'publish', 'closed', 'closed', '', '7170', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7170', 12, 'nav_menu_item', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7171, 1, '2021-04-20 10:00:14', '2021-04-20 10:00:14', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:00:14', '2021-04-20 10:00:14', '', 7087, 'https://qualstream.net/?p=7171', 0, 'revision', '', 0),
(7172, 1, '2021-04-20 10:03:52', '2021-04-20 10:03:52', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" css=\".vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:03:52', '2021-04-20 10:03:52', '', 7087, 'https://qualstream.net/?p=7172', 0, 'revision', '', 0),
(7173, 1, '2021-04-20 10:05:08', '2021-04-20 10:05:08', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" css=\".vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913105377{padding-left: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:05:08', '2021-04-20 10:05:08', '', 7087, 'https://qualstream.net/?p=7173', 0, 'revision', '', 0),
(7174, 1, '2021-04-20 10:06:03', '2021-04-20 10:06:03', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" css=\".vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913160646{padding-left: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:06:03', '2021-04-20 10:06:03', '', 7087, 'https://qualstream.net/?p=7174', 0, 'revision', '', 0),
(7175, 1, '2021-04-20 10:06:46', '2021-04-20 10:06:46', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" css=\".vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:06:46', '2021-04-20 10:06:46', '', 7087, 'https://qualstream.net/?p=7175', 0, 'revision', '', 0),
(7177, 1, '2021-04-20 10:08:35', '2021-04-20 10:08:35', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n.page-id-7087 #main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 10:08:35', '2021-04-20 10:08:35', '', 6926, 'https://qualstream.net/?p=7177', 0, 'revision', '', 0),
(7179, 1, '2021-04-20 10:09:17', '2021-04-20 10:09:17', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n.page-id-7087 #main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 10:09:17', '2021-04-20 10:09:17', '', 6926, 'https://qualstream.net/?p=7179', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7180, 1, '2021-04-20 10:11:01', '2021-04-20 10:11:01', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" css=\".vc_custom_1618913025225{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"42px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:11:01', '2021-04-20 10:11:01', '', 7087, 'https://qualstream.net/?p=7180', 0, 'revision', '', 0),
(7181, 1, '2021-04-20 10:12:26', '2021-04-20 10:12:26', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618912946383{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:12:26', '2021-04-20 10:12:26', '', 7087, 'https://qualstream.net/?p=7181', 0, 'revision', '', 0),
(7182, 1, '2021-04-20 10:17:33', '2021-04-20 10:17:33', '', 'financial-banner', '', 'inherit', 'open', 'closed', '', 'financial-banner', '', '', '2021-04-20 10:17:33', '2021-04-20 10:17:33', '', 7087, 'https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(7183, 1, '2021-04-20 10:17:43', '2021-04-20 10:17:43', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618900669658{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618900760005{padding-top: 10px !important;padding-left: 20px !important;}\"]Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers to effortlessly conduct their banking transactions online, anytime, and from any device.</p>\r\n<p>However, this drive towards mobility comes with its share of problems as well. Consumers have high expectations about online banking including access and availability to both manage and invest their money. They want to have their cake and eat it too. Security is a paramount concern especially in consideration of the various digital currency platforms that are being integrated into our everyday lives.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618900823839{padding-top: 10px !important;}\"]Paypal, Apple Pay, and Venmo all offer unique opportunities for digital deposits and spending. This shift away from physical locations and paper money and instead towards the future of banking means new rules and of course new innovations that will be needed to ensure that your customers are getting the best consumer experience possible.</p>\r\n<p>Our teams are comprised of hard-working, experienced people that look to deliver banking solutions that fit our clients current and future needs by leveraging both banking knowledge and project experience and combining that with the strong technical expertise to help solve the problems you face.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\r\nwith PROMOTIONS</span></li>\r\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\r\n', 'Financial and Banking', '', 'inherit', 'closed', 'closed', '', '7087-revision-v1', '', '', '2021-04-20 10:17:43', '2021-04-20 10:17:43', '', 7087, 'https://qualstream.net/?p=7183', 0, 'revision', '', 0),
(7185, 1, '2021-04-20 10:20:21', '2021-04-20 10:20:21', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-20 10:20:21', '2021-04-20 10:20:21', '', 6926, 'https://qualstream.net/?p=7185', 0, 'revision', '', 0),
(7186, 1, '2021-04-20 10:27:42', '2021-04-20 10:27:42', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Technology Solutions Offering</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Architecture Framework set-up</span></li>\r\n 	<li><span style=\"color: #ffffff;\">SOA Governance Set-up &amp; Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:27:42', '2021-04-20 10:27:42', '', 7121, 'https://qualstream.net/?p=7186', 0, 'revision', '', 0),
(7187, 1, '2021-04-20 10:30:28', '2021-04-20 10:30:28', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:30:28', '2021-04-20 10:30:28', '', 7121, 'https://qualstream.net/?p=7187', 0, 'revision', '', 0),
(7188, 1, '2021-04-20 10:30:49', '2021-04-20 10:30:49', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:30:49', '2021-04-20 10:30:49', '', 7121, 'https://qualstream.net/?p=7188', 0, 'revision', '', 0),
(7189, 1, '2021-04-20 10:31:16', '2021-04-20 10:31:16', '', 'energy-utility', '', 'inherit', 'open', 'closed', '', 'energy-utility', '', '', '2021-04-20 10:31:16', '2021-04-20 10:31:16', '', 7121, 'https://qualstream.net/wp-content/uploads/2021/04/energy-utility.jpg', 0, 'attachment', 'image/jpeg', 0),
(7190, 1, '2021-04-20 10:31:36', '2021-04-20 10:31:36', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618914694284{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/energy-utility.jpg?id=7189) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:31:36', '2021-04-20 10:31:36', '', 7121, 'https://qualstream.net/?p=7190', 0, 'revision', '', 0),
(7191, 1, '2021-04-20 10:38:18', '2021-04-20 10:38:18', '', 'energy-top', '', 'inherit', 'open', 'closed', '', 'energy-top', '', '', '2021-04-20 10:38:18', '2021-04-20 10:38:18', '', 7121, 'https://qualstream.net/wp-content/uploads/2021/04/energy-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7192, 1, '2021-04-20 10:38:25', '2021-04-20 10:38:25', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7191\" img_size=\"full\" css=\".vc_custom_1618915103001{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618914694284{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/energy-utility.jpg?id=7189) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:38:25', '2021-04-20 10:38:25', '', 7121, 'https://qualstream.net/?p=7192', 0, 'revision', '', 0),
(7193, 1, '2021-04-20 10:39:07', '2021-04-20 10:39:07', '', '2', '', 'inherit', 'open', 'closed', '', '2', '', '', '2021-04-20 10:39:07', '2021-04-20 10:39:07', '', 7121, 'https://qualstream.net/wp-content/uploads/2021/04/2.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7194, 1, '2021-04-20 10:39:17', '2021-04-20 10:39:17', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Energy and Utility</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618907527630{padding-top: 10px !important;padding-left: 20px !important;}\"]In the energy and utilities sectors, technology is the key to streamlining operations and ensuring effective communications across the enterprise.\r\nWe deliver industry-leading data center and infrastructure solutions that provide secure access to applications and data and support a wide range of network-connected devices. High availability and data protection are key components of every solution.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7191\" img_size=\"full\" css=\".vc_custom_1618915103001{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618915155428{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/2.jpg?id=7193) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Energy and Utility', '', 'inherit', 'closed', 'closed', '', '7121-revision-v1', '', '', '2021-04-20 10:39:17', '2021-04-20 10:39:17', '', 7121, 'https://qualstream.net/?p=7194', 0, 'revision', '', 0),
(7195, 1, '2021-04-20 10:44:08', '2021-04-20 10:44:08', '', 'healthcare-top', '', 'inherit', 'open', 'closed', '', 'healthcare-top', '', '', '2021-04-20 10:44:08', '2021-04-20 10:44:08', '', 7126, 'https://qualstream.net/wp-content/uploads/2021/04/healthcare-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7196, 1, '2021-04-20 10:44:19', '2021-04-20 10:44:19', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7195\" img_size=\"full\" css=\".vc_custom_1618915455482{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618906719661{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/technology-offerings.jpg?id=7096) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 10:44:19', '2021-04-20 10:44:19', '', 7126, 'https://qualstream.net/?p=7196', 0, 'revision', '', 0),
(7197, 1, '2021-04-20 10:46:44', '2021-04-20 10:46:44', '', 'healthcare-bottom', '', 'inherit', 'open', 'closed', '', 'healthcare-bottom', '', '', '2021-04-20 10:46:44', '2021-04-20 10:46:44', '', 7126, 'https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7198, 1, '2021-04-20 10:46:55', '2021-04-20 10:46:55', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7195\" img_size=\"full\" css=\".vc_custom_1618915455482{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 10:46:55', '2021-04-20 10:46:55', '', 7126, 'https://qualstream.net/?p=7198', 0, 'revision', '', 0),
(7199, 1, '2021-04-20 10:48:01', '2021-04-20 10:48:01', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Health Care</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Healthcare IT Done Right\" css=\".vc_custom_1618907989228{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7195\" img_size=\"full\" css=\".vc_custom_1618915455482{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>We Deliver Custom Medical IT Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618907998802{padding-top: 10px !important;padding-left: 20px !important;}\"]The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means there are potential opportunities.\r\nThe rising costs of healthcare should result in a gradual shift by health organizations towards value-based care systems. These types of systems will then drive the need for new operating models and emerging technologies that will then help improve patient outcomes.[/vc_column_text][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618915612495{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/healthcare-bottom.jpg?id=7197) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1618908652714{padding-top: 40px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along with PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"81px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture [SOA]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management [BPM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Supply Chain Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">eclinical Implementation [Trails, Development &amp; Data Management]</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Agents, Hospitals, Providers etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Health Care', '', 'inherit', 'closed', 'closed', '', '7126-revision-v1', '', '', '2021-04-20 10:48:01', '2021-04-20 10:48:01', '', 7126, 'https://qualstream.net/?p=7199', 0, 'revision', '', 0),
(7200, 1, '2021-04-20 10:51:04', '2021-04-20 10:51:04', '[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Financial and Banking dummy', '', 'publish', 'closed', 'closed', '', 'financial-and-banking-dummy', '', '', '2021-04-20 10:51:04', '2021-04-20 10:51:04', '', 0, 'https://qualstream.net/?page_id=7200', 0, 'page', '', 0),
(7201, 1, '2021-04-20 10:51:04', '2021-04-20 10:51:04', '[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Financial and Banking dummy', '', 'inherit', 'closed', 'closed', '', '7200-revision-v1', '', '', '2021-04-20 10:51:04', '2021-04-20 10:51:04', '', 7200, 'https://qualstream.net/?p=7201', 0, 'revision', '', 0),
(7202, 1, '2021-04-20 10:51:53', '2021-04-20 10:51:53', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row]\r\n\r\n&nbsp;\r\n\r\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 10:51:53', '2021-04-20 10:51:53', '', 7140, 'https://qualstream.net/?p=7202', 0, 'revision', '', 0),
(7203, 1, '2021-04-20 10:53:30', '2021-04-20 10:53:30', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row]\r\n\r\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 10:53:30', '2021-04-20 10:53:30', '', 7140, 'https://qualstream.net/?p=7203', 0, 'revision', '', 0),
(7204, 1, '2021-04-20 10:59:34', '2021-04-20 10:59:34', '', 'industrial-bottom', '', 'inherit', 'open', 'closed', '', 'industrial-bottom', '', '', '2021-04-20 10:59:34', '2021-04-20 10:59:34', '', 7140, 'https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7205, 1, '2021-04-20 10:59:39', '2021-04-20 10:59:39', '', 'industrial-top', '', 'inherit', 'open', 'closed', '', 'industrial-top', '', '', '2021-04-20 10:59:39', '2021-04-20 10:59:39', '', 7140, 'https://qualstream.net/wp-content/uploads/2021/04/industrial-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7206, 1, '2021-04-20 11:00:04', '2021-04-20 11:00:04', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7205\" img_size=\"full\" css=\".vc_custom_1618916386335{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 11:00:04', '2021-04-20 11:00:04', '', 7140, 'https://qualstream.net/?p=7206', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7207, 1, '2021-04-20 11:00:54', '2021-04-20 11:00:54', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Industrial Manufacturing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Manufacturing Facility with Modern IT\" css=\".vc_custom_1618908939151{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618908957301{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7205\" img_size=\"full\" css=\".vc_custom_1618916386335{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618908968199{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618916401573{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/industrial-bottom.jpg?id=7204) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Industrial Manufacturing', '', 'inherit', 'closed', 'closed', '', '7140-revision-v1', '', '', '2021-04-20 11:00:54', '2021-04-20 11:00:54', '', 7140, 'https://qualstream.net/?p=7207', 0, 'revision', '', 0),
(7208, 1, '2021-04-20 11:02:59', '2021-04-20 11:02:59', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Engineering Facility With Modern IT\" css=\".vc_custom_1618909229937{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618909259938{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row]\r\n\r\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Engineering', '', 'inherit', 'closed', 'closed', '', '7144-revision-v1', '', '', '2021-04-20 11:02:59', '2021-04-20 11:02:59', '', 7144, 'https://qualstream.net/?p=7208', 0, 'revision', '', 0),
(7209, 1, '2021-04-20 11:07:33', '2021-04-20 11:07:33', '', 'engineering-bottom', '', 'inherit', 'open', 'closed', '', 'engineering-bottom', '', '', '2021-04-20 11:07:33', '2021-04-20 11:07:33', '', 7144, 'https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7210, 1, '2021-04-20 11:07:37', '2021-04-20 11:07:37', '', 'engineering-top', '', 'inherit', 'open', 'closed', '', 'engineering-top', '', '', '2021-04-20 11:07:37', '2021-04-20 11:07:37', '', 7144, 'https://qualstream.net/wp-content/uploads/2021/04/engineering-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7211, 1, '2021-04-20 11:08:01', '2021-04-20 11:08:01', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Financial and Banking</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Empower Your Engineering Facility With Modern IT\" css=\".vc_custom_1618909229937{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618909249099{padding-top: 10px !important;padding-left: 20px !important;}\"]Like many other industries, the manufacturing industry will face continual disruption from the need for greater automation along with investments driven by accelerated production cycles, advanced technologies, and the changing labor demographics. This creates numerous challenges for businesses within this sector.\r\nHow can you stay competitive both now and in the future? Ultimately your business needs to be positioned for competitiveness and growth which means adopting lean manufacturing techniques and also utilizing the latest advances in both technology and animation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7210\" img_size=\"full\" css=\".vc_custom_1618916861169{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618909259938{padding-top: 10px !important;}\"]What’s more, it is important to recognize that emerging digital technologies such as social media, cloud computing, increased mobility, big data &amp; analytics and the Internet of Things will continue to drive even more innovations within this industry and others. Manufacturers will seek to improve their efficiency and ROI within their production operations by reducing unit costs, improving quality and decreasing the time to market.\r\nThese changes will happen whether we want them to or not.\r\nSome of the keys to being a successful manufacturer in this digital age are the ability to respond to major shifts and changes in technology, understand how those changes will affect both you and your customers, create improvements in supply chain management platforms, gain access to skilled labor, utilize data and analytics, understand the need for better cyber-security and utilize inventory management systems.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618916879301{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/engineering-bottom.jpg?id=7209) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Engineering', '', 'inherit', 'closed', 'closed', '', '7144-revision-v1', '', '', '2021-04-20 11:08:01', '2021-04-20 11:08:01', '', 7144, 'https://qualstream.net/?p=7211', 0, 'revision', '', 0),
(7212, 1, '2021-04-20 11:10:43', '2021-04-20 11:10:43', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Insurance</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}\"]In recent years the market share of traditional insurers has been under attack by a variety of forces Internet disintermediation, new competition from untraditional sources, deregulation, compliance pressures and customer empowerment to transform traditional insurance companies into customer-centric organizations. These marketplace dynamics are creating new opportunities, however adopting right technologies and right partner is critical in achieving the results by cutting the costs at the same time.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]\r\n\r\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'inherit', 'closed', 'closed', '', '7146-revision-v1', '', '', '2021-04-20 11:10:43', '2021-04-20 11:10:43', '', 7146, 'https://qualstream.net/?p=7212', 0, 'revision', '', 0),
(7213, 1, '2021-04-20 11:10:51', '2021-04-20 11:10:51', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Insurance</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}\"]In recent years the market share of traditional insurers has been under attack by a variety of forces Internet disintermediation, new competition from untraditional sources, deregulation, compliance pressures and customer empowerment to transform traditional insurance companies into customer-centric organizations. These marketplace dynamics are creating new opportunities, however adopting right technologies and right partner is critical in achieving the results by cutting the costs at the same time.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]\n\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\nwith PROMOTIONS</span></li>\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n[/stm_info_box][vc_empty_space][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'inherit', 'closed', 'closed', '', '7146-autosave-v1', '', '', '2021-04-20 11:10:51', '2021-04-20 11:10:51', '', 7146, 'https://qualstream.net/?p=7213', 0, 'revision', '', 0),
(7214, 1, '2021-04-20 11:12:46', '2021-04-20 11:12:46', '', 'insurance-bottom', '', 'inherit', 'open', 'closed', '', 'insurance-bottom', '', '', '2021-04-20 11:12:46', '2021-04-20 11:12:46', '', 7146, 'https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7215, 1, '2021-04-20 11:12:50', '2021-04-20 11:12:50', '', 'insurance-top', '', 'inherit', 'open', 'closed', '', 'insurance-top', '', '', '2021-04-20 11:12:50', '2021-04-20 11:12:50', '', 7146, 'https://qualstream.net/wp-content/uploads/2021/04/insurance-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7216, 1, '2021-04-20 11:13:14', '2021-04-20 11:13:14', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Insurance</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618910636392{padding-top: 10px !important;padding-left: 20px !important;}\"]In recent years the market share of traditional insurers has been under attack by a variety of forces Internet disintermediation, new competition from untraditional sources, deregulation, compliance pressures and customer empowerment to transform traditional insurance companies into customer-centric organizations. These marketplace dynamics are creating new opportunities, however adopting right technologies and right partner is critical in achieving the results by cutting the costs at the same time.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7215\" img_size=\"full\" css=\".vc_custom_1618917173790{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618917189502{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/insurance-bottom.jpg?id=7214) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Insurance', '', 'inherit', 'closed', 'closed', '', '7146-revision-v1', '', '', '2021-04-20 11:13:14', '2021-04-20 11:13:14', '', 7146, 'https://qualstream.net/?p=7216', 0, 'revision', '', 0),
(7217, 1, '2021-04-20 11:19:01', '2021-04-20 11:19:01', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Media And Telecom</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Our IT Solutions Can Put You Ahead Of Other Carriers\" css=\".vc_custom_1618910859455{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}\"]The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.\nCarriers will continue to focus on providing data and voice services that are high quality, reliable, and affordable. As data usage from mobile users continues to increase, the corresponding demand will force carriers to invest in upgrades to their core connectivity and data storage infrastructures. Those upgrades will also be necessary over the next few years as carriers shift to the 5th Generation (5G) mobile networks along with handling the needs of the next generations of smartphones.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7093\" img_size=\"full\" css=\".vc_custom_1618901699271{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618910883658{padding-top: 10px !important;}\"]<strong>Can you hear me now?</strong>\nAs those carriers look to remain competitive in a crowded field, the need for improvement in areas such as operations becomes a need rather than a want. Numerous telecoms are still heavily reliant on outdated manual processes. With the availability of new technologies and innovations, the future is now when it comes to digital transformation for carriers in both the U.S. and around the globe.\nWe are forecasting customer care, sales, and billing as the areas which would have the greatest potential benefit from digital improvement.[/vc_column_text][vc_empty_space][/vc_column][/vc_row]\n\n&nbsp;\n\n[vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\nwith PROMOTIONS</span></li>\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n[/stm_info_box][vc_empty_space][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n\n<ul>\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Media and Telecom', '', 'inherit', 'closed', 'closed', '', '7150-autosave-v1', '', '', '2021-04-20 11:19:01', '2021-04-20 11:19:01', '', 7150, 'https://qualstream.net/?p=7217', 0, 'revision', '', 0),
(7218, 1, '2021-04-20 11:20:10', '2021-04-20 11:20:10', '', 'media-bottom', '', 'inherit', 'open', 'closed', '', 'media-bottom', '', '', '2021-04-20 11:20:10', '2021-04-20 11:20:10', '', 7150, 'https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7219, 1, '2021-04-20 11:20:14', '2021-04-20 11:20:14', '', 'media-top', '', 'inherit', 'open', 'closed', '', 'media-top', '', '', '2021-04-20 11:20:14', '2021-04-20 11:20:14', '', 7150, 'https://qualstream.net/wp-content/uploads/2021/04/media-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7220, 1, '2021-04-20 11:20:36', '2021-04-20 11:20:36', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Media And Telecom</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"Our IT Solutions Can Put You Ahead Of Other Carriers\" css=\".vc_custom_1618910859455{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618910870928{padding-top: 10px !important;padding-left: 20px !important;}\"]The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.\r\nCarriers will continue to focus on providing data and voice services that are high quality, reliable, and affordable. As data usage from mobile users continues to increase, the corresponding demand will force carriers to invest in upgrades to their core connectivity and data storage infrastructures. Those upgrades will also be necessary over the next few years as carriers shift to the 5th Generation (5G) mobile networks along with handling the needs of the next generations of smartphones.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7219\" img_size=\"full\" css=\".vc_custom_1618917619699{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618910883658{padding-top: 10px !important;}\"]<strong>Can you hear me now?</strong>\r\nAs those carriers look to remain competitive in a crowded field, the need for improvement in areas such as operations becomes a need rather than a want. Numerous telecoms are still heavily reliant on outdated manual processes. With the availability of new technologies and innovations, the future is now when it comes to digital transformation for carriers in both the U.S. and around the globe.\r\nWe are forecasting customer care, sales, and billing as the areas which would have the greatest potential benefit from digital improvement.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618917634192{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/media-bottom.jpg?id=7218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Media and Telecom', '', 'inherit', 'closed', 'closed', '', '7150-revision-v1', '', '', '2021-04-20 11:20:36', '2021-04-20 11:20:36', '', 7150, 'https://qualstream.net/?p=7220', 0, 'revision', '', 0),
(7221, 1, '2021-04-20 11:29:20', '2021-04-20 11:29:20', '<p>[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]</p>\n<blockquote>\n<h4>Airline Travel Logistics</h4>\n</blockquote>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}\"]It is a known fact that more than two-thirds of the planet is covered by water and that more than 80% of all finished goods and raw materials traded globally is shipped through sea. Be it dry, wet or containerized cargo, commercial shipping industry remains the enabler and backbone of international trade and commerce.</p>\n<p>Customer satisfaction has been the most common and valued Key Performance Indicator across industries. Achieving this KPI requires optimized integration of resources, processes, relationships, tools and techniques within the extended enterprise – that spans across the supply chain.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7223\" img_size=\"full\" css=\".vc_custom_1618918156466{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618913861582{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/financial-banner.jpg?id=7182) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along<br />\nwith PROMOTIONS</span></li>\n<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\n<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\n<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">BigData</span></li>\n<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\n<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\n<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\n<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\n<li><span style=\"color: #ffffff;\">Process Integration</span></li>\n<li><span style=\"color: #ffffff;\">Application Integration</span></li>\n<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\n</ul>\n<p>[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]</p>\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\n<ul>\n<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\n<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\n<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\n<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\n<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\n</ul>\n<p>[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]</p>\n', 'Airline Travel Logistics', '', 'inherit', 'closed', 'closed', '', '7153-autosave-v1', '', '', '2021-04-20 11:29:20', '2021-04-20 11:29:20', '', 7153, 'https://qualstream.net/?p=7221', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7222, 1, '2021-04-20 11:29:07', '2021-04-20 11:29:07', '', 'airline-bottom', '', 'inherit', 'open', 'closed', '', 'airline-bottom', '', '', '2021-04-20 11:29:07', '2021-04-20 11:29:07', '', 7153, 'https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7223, 1, '2021-04-20 11:29:11', '2021-04-20 11:29:11', '', 'airline-top', '', 'inherit', 'open', 'closed', '', 'airline-top', '', '', '2021-04-20 11:29:11', '2021-04-20 11:29:11', '', 7153, 'https://qualstream.net/wp-content/uploads/2021/04/airline-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7224, 1, '2021-04-20 11:29:45', '2021-04-20 11:29:45', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Airline Travel Logistics</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618911367711{padding-top: 10px !important;padding-left: 20px !important;}\"]It is a known fact that more than two-thirds of the planet is covered by water and that more than 80% of all finished goods and raw materials traded globally is shipped through sea. Be it dry, wet or containerized cargo, commercial shipping industry remains the enabler and backbone of international trade and commerce.\r\n\r\nCustomer satisfaction has been the most common and valued Key Performance Indicator across industries. Achieving this KPI requires optimized integration of resources, processes, relationships, tools and techniques within the extended enterprise – that spans across the supply chain.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7223\" img_size=\"full\" css=\".vc_custom_1618918156466{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618918183299{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/airline-bottom.jpg?id=7222) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Airline Travel Logistics', '', 'inherit', 'closed', 'closed', '', '7153-revision-v1', '', '', '2021-04-20 11:29:45', '2021-04-20 11:29:45', '', 7153, 'https://qualstream.net/?p=7224', 0, 'revision', '', 0),
(7225, 1, '2021-04-20 11:34:56', '2021-04-20 11:34:56', '', 'consumer-bottom', '', 'inherit', 'open', 'closed', '', 'consumer-bottom', '', '', '2021-04-20 11:34:56', '2021-04-20 11:34:56', '', 7157, 'https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg', 0, 'attachment', 'image/jpeg', 0),
(7226, 1, '2021-04-20 11:35:00', '2021-04-20 11:35:00', '', 'consumer-top', '', 'inherit', 'open', 'closed', '', 'consumer-top', '', '', '2021-04-20 11:35:00', '2021-04-20 11:35:00', '', 7157, 'https://qualstream.net/wp-content/uploads/2021/04/consumer-top.jpg', 0, 'attachment', 'image/jpeg', 0),
(7227, 1, '2021-04-20 11:35:28', '2021-04-20 11:35:28', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consumer and Retail</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"\" font_container=\"tag:h2|text_align:justify|color:%230a0a0a\" use_theme_fonts=\"yes\" subtitle=\"We know Retail IT\" css=\".vc_custom_1618911656485{padding-left: 20px !important;}\"][vc_column_text css=\".vc_custom_1618911668512{padding-top: 10px !important;padding-left: 20px !important;}\"]In the retail game, it’s all about connecting with your customers. The retail industry has found itself riding the wave of the digital evolution for the past few years because of the manner in which technology developed has allowed us to foster stronger connections with customers and potential customers anytime and anyplace.\r\nCustomer-driven retailers who have analyzed and understood the buying behaviors and patterns of their customers and then use that knowledge to craft a targeted buying experience that focuses on customers’ needs will continue to rule the day. Offering relevant products and services while connecting with customers and fostering brand loyalty has become the norm.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7226\" img_size=\"full\" css=\".vc_custom_1618918510667{padding-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4 style=\"text-align: left;\">Gain an Edge With Analytics &amp; Big Data</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_column_text]<strong>How can you compete within this industry without access to advanced analytics fueled by big data?</strong>\r\nThe ultimate goal for retailers is to continue to leverage that valuable customer data into meaningful and actionable insights that then create a unique and memorable shopping experience.\r\nIt is critical for businesses within this sector to embrace digital technologies such as mobile, big data, and analytics along with crafting a brand that is different from the competition to attract and retain the millennial and the linkster generations, improve customer loyalty and retention, enhance channel operations, and increase market share. Ultimately e-commerce sales will continue to outpace traditional brick-and-mortar experiences, and retail businesses need to be positioned properly to make the most of this transition or be left by the wayside.[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1618918525025{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/consumer-bottom.jpg?id=7225) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"\" font_container=\"tag:h1|font_size:20|text_align:justify|color:%23ffffff\" use_theme_fonts=\"yes\" subtitle=\"Custom IT Solutions For Banks\" css=\".vc_custom_1618913202395{padding-left: 20px !important;}\" el_class=\"heading-wrap\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">General</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Reseller of IBM Software [New and Renewal] along\r\nwith PROMOTIONS</span></li>\r\n 	<li><span style=\"color: #ffffff;\">IT Consulting/Staffing Services [Fulltime Placements, Contract-to-Hire, Contract</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Migration &amp; Upgrade of various products</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Maintenance Support</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Data</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">BigData</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Data Warehouse / Intelligence / Analytics</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Master Data Management [MDM]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Content and Records Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][vc_column_inner width=\"1/4\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Enterprise</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Service Oriented Architecture</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Business Process Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Process Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Integration</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Electronic Data Interchange</span></li>\r\n</ul>\r\n[/stm_info_box][vc_empty_space height=\"46px\"][stm_info_box]\r\n<p style=\"font-size: 25px; font-weight: 600;\"><span style=\"color: #eb900d;\">Application &amp; Technology</span></p>\r\n\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\">Mobile Applications for Energy and Utilities Industry</span></li>\r\n 	<li><span style=\"color: #ffffff;\">E-Commerce Development and Management</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Application Development and Support</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Enterprise Portals [Customers, Employees, Partners etc]</span></li>\r\n 	<li><span style=\"color: #ffffff;\">Infrastructure Management</span></li>\r\n</ul>\r\n[/stm_info_box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row]', 'Consumer and Retail', '', 'inherit', 'closed', 'closed', '', '7157-revision-v1', '', '', '2021-04-20 11:35:28', '2021-04-20 11:35:28', '', 7157, 'https://qualstream.net/?p=7227', 0, 'revision', '', 0),
(7228, 1, '2021-04-21 06:09:58', '2021-04-21 06:09:58', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Cloud Infrastructure Monitoring Services</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552458387{padding-left: 20px !important;}\"]In today’s fast-paced digital business environment, enterprise applications are the backbone of a successful business. We develop customized, high quality, flexible applications that are secure, reliable, cost-effective, and are easy to maintain all while utilizing global delivery capabilities.\r\n\r\nThe foundation of a successful organisation is enterprise applications in today’s fast-paced digital business environment.\r\n\r\nWe build personalised, high-quality, flexible apps that are secure, accurate, cost-effective , and easy to manage by utilizing global distribution capabilities.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7027\" img_size=\"585x250\" css=\".vc_custom_1618557153424{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Enterprise Portal Solutions</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618552985196{padding-left: 20px !important;}\"]We incorporate productive enterprise portal technologies that fulfil the business needs, generating customer satisfaction improvements and improved efficiency for the workforce.\r\nMicrosoft, IBM, and Oracle technologies are used to create the business portals, we developed.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7029\" img_size=\"full\" css=\".vc_custom_1618557330776{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Mobile Application Development</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553042340{padding-left: 20px !important;}\"]It is important that you stay linked with your staff , clients or partners today.\r\nWe will make sure, from anywhere and any time, that you are always available on any device.\r\nOur mobile app development capabilities include designing personalised native applications, developing solutions for corporate connectivity, and managing the company’s devices.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7031\" img_size=\"585x250\" css=\".vc_custom_1618557739555{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>QA - Testing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553091967{padding-left: 20px !important;}\"]QualStream Always conform with the highest standards, instruments and methodologies of testing in the industry that reduce defects and increase the overall efficiency of each application we develop.\r\nOur resources provide consistency checking, usability monitoring and checking for system integration.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7032\" img_size=\"585x250\" css=\".vc_custom_1618557894400{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Performance Management</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553351100{padding-left: 20px !important;}\"]AT QualStream we can monitor, evaluate and handle the programme, whether it is in the cloud, on line or hybrid using our industry-leading APM tool.\r\nOur services can enable you to enhance customer experience by easily and effectively finding and solving issues.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7037\" img_size=\"585x250\" css=\".vc_custom_1618558674081{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Portal Upgrade and Migration</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553335629{padding-left: 20px !important;}\"]Portal upgrades and data migration can be extremely stressful when working with an inexperienced company. However, with our years of experience, we partner with your teams to manage the upgrade and migration process from initial assessments and planning to deployment of solutions to then continued support afterwards. Our secure and swift upgrade and migration services will help you improve both your information delivery and business intelligence processes which ultimately will help your bottom line.\r\n\r\nPortal changes and data transfer can be very difficult when you deal for a novice organisation. We collaborate with your teams with our years of experience to handle the change and conversion process from initial evaluation and preparation to solution execution and then ongoing support. Our healthy and quick updating and transformation services will help you develop your knowledge and business intelligence, which will eventually help you to get the best out of the situation.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7035\" img_size=\"full\" css=\".vc_custom_1618558491141{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Security</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553312429{padding-left: 20px !important;}\"]Malicious attacks online will impact both your brand and your history.\r\nWe will incorporate solutions here at AlphaQual to avoid online threats from your site and smartphone device and to identify possible bugs and lock the doors before intruders discover them.\r\nOur services include vulnerability assessment, simulation of risks, architectural design evaluation and review of the product.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7034\" img_size=\"585x250\" css=\".vc_custom_1618558207015{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Application Maintanence</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618553191420{padding-left: 20px !important;}\"]Our integrated global distribution center based in India can effectively finance and handle applications in economic ways.\r\nImproved device reliability, improved development, and decreased total costs are supported by our inclusive services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7033\" img_size=\"585x250\" css=\".vc_custom_1618558097367{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Application Development and Maintenence', '', 'inherit', 'closed', 'closed', '', '7004-revision-v1', '', '', '2021-04-21 06:09:58', '2021-04-21 06:09:58', '', 7004, 'https://qualstream.net/?p=7228', 0, 'revision', '', 0),
(7230, 1, '2021-04-21 06:13:37', '2021-04-21 06:13:37', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 06:13:37', '2021-04-21 06:13:37', '', 6926, 'https://qualstream.net/?p=7230', 0, 'revision', '', 0),
(7231, 1, '2021-04-21 06:15:36', '2021-04-21 06:15:36', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Full Time Staffing</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618571233090{padding-left: 20px !important;}\"]Searching and recruiting a full-time employee can be a difficult job.The time and effort spent on research, posts and recruitment will cost your company a lot of time and money. At QualStream we already have a pool of professional and qualified workers who we’ve been waiting for the best place.Working alongside our QualStream Resources team helps you to concentrate on your day-to-day duties, and we will bring the best applicants to you at the right time.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Benefits of Direct Hire Staffing:</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]\r\n<ul>\r\n 	<li>Better Candidates</li>\r\n 	<li>Strong Commitment</li>\r\n 	<li>Decreased Risks</li>\r\n 	<li>Less down-time</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]\r\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\r\n<div class=\"wpb_wrapper\">\r\n\r\nMaking sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\n<strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Full Time Staffing', '', 'inherit', 'closed', 'closed', '', '7075-revision-v1', '', '', '2021-04-21 06:15:36', '2021-04-21 06:15:36', '', 7075, 'https://qualstream.net/?p=7231', 0, 'revision', '', 0),
(7232, 1, '2021-04-21 06:15:49', '2021-04-21 06:15:49', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Full Time Staffing</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1618571233090{padding-left: 20px !important;}\"]Searching and recruiting a full-time employee can be a difficult job.The time and effort spent on research, posts and recruitment will cost your company a lot of time and money. At QualStream we already have a pool of professional and qualified workers who we’ve been waiting for the best place.Working alongside our QualStream Resources team helps you to concentrate on your day-to-day duties, and we will bring the best applicants to you at the right time.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1618552810519{padding-top: 40px !important;}\"][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\n<blockquote>\n<h4>Benefits of Direct Hire Staffing:</h4>\n</blockquote>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571385261{padding-left: 20px !important;}\"]\n<ul>\n 	<li>Better Candidates</li>\n 	<li>Strong Commitment</li>\n 	<li>Decreased Risks</li>\n 	<li>Less down-time</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7077\" img_size=\"full\" css=\".vc_custom_1618571589948{padding-right: 20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1618571633334{padding-left: 20px !important;}\"]\n<div class=\"wpb_text_column wpb_content_element vc_custom_1603265017174\">\n<div class=\"wpb_wrapper\">\n\nMaking sure that you have the right candidate is very important to us and we are confident that we will help fill the position with the proper person. We encourage employers to use this option when you are looking for a reliable, dedicated, talented individual to join your team.\n\n</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\n<strong>Direct Hire Staffing is a great long-term solution for companies of all sizes. From sourcing to fulfillment, we pay close attention to your needs to ensure we deliver the perfect candidate for you!</strong>\n\n</div>\n</div>\n[/vc_column_text][/vc_column][/vc_row]', 'Full Time Staffing', '', 'inherit', 'closed', 'closed', '', '7075-autosave-v1', '', '', '2021-04-21 06:15:49', '2021-04-21 06:15:49', '', 7075, 'https://qualstream.net/?p=7232', 0, 'revision', '', 0),
(7233, 1, '2021-04-21 06:16:56', '2021-04-21 06:16:56', '[vc_row][vc_column][vc_column_text el_class=\"inner-head-wrap\"]\r\n<blockquote>\r\n<h4>Consulting</h4>\r\n</blockquote>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1618571951669{padding-left: 20px !important;}\"]QualStream provides a selective variety of IT resources that support organisations easily and cost-effectively execute key policies.We will provide the best supply approach to fulfill constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centers and benefit from our industry-specific and decentralized account management that facilitates fulfillment satisfaction.\r\n\r\nNearly every organization now depends on machine management and essential decision-making knowledge. The IT contractor administers and manages this material. It is important that all consultants provide support to the company through automation techniques, which permit the flow and timely availability of business data.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"7084\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1618572144666{padding-left: 20px !important;}\"]Such recommendations can be split into a range of primary regions. These provide the assistance of hardware engineering, programme administration and enterprise architecture assistance. There are also divisions within both of these specialisation regions. Each and every sector of the market is still sponsored by our business.\r\n\r\nWith the vast variety of specialties that continue to develop daily in the IT consultancy industry, consultants may characterize their employment from a hardware repair specialist to an expert in business analysis. This is a special environment where various IT experts are already well versed in the business sector.\r\n\r\nWe therefore grow our goods and services rapidly for our customers. We balance the need for a swift solution with the need to incorporate other technology and we are backed and sustained by real-world practice. The select selection of IT programs tailored to help companies implement key goals easily and cost-efficiently complete our product development, engineering teams.\r\n\r\nWe will provide the best supply approach to fulfill the constantly growing technological needs of our customers. Our customers can also access our on-site, near-shore and offshore solution centres and benefit from our industry-specific and decentralised account management that facilitates fulfilment satisfaction. With access to the “Knowledge Base” expertise expertise of QaulStream, our teams are\r\nable to complete the project quicker and reach a higher chance of project completion.\r\n\r\nMost IT consultants have degrees in Informatic, Electrical, Network Protection, Cloud, Supply Chain and related disciplines. All have worked in the area of app production with a wide range of platforms and speeches. So QualStream does not hire a sole engineer but a network of experts to guarantee that you first accomplish a solid concept. We work for a range of frameworks and frameworks and conduct architecture, design , development, porting and tuning and frameworks management – and map into any process of the software engineering cycle so that we can step in and facilitate execution and business performance at every point of the project.[/vc_column_text][/vc_column][/vc_row]', 'Consulting', '', 'inherit', 'closed', 'closed', '', '7080-revision-v1', '', '', '2021-04-21 06:16:56', '2021-04-21 06:16:56', '', 7080, 'https://qualstream.net/?p=7233', 0, 'revision', '', 0),
(7234, 1, '2021-04-21 06:23:06', '2021-04-21 06:23:06', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7244\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row gap=\"20\"][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-gem\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618988382088{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"fas fa-search\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618988346009{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-thumbs-up\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618988307315{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-handshake\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618988252507{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2021-04-21 06:59:45', '2021-04-21 06:59:45', '', 0, 'https://qualstream.net/?page_id=7234', 0, 'page', '', 0),
(7235, 1, '2021-04-21 06:23:06', '2021-04-21 06:23:06', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1555483442994{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 81px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_column_text css=\".vc_custom_1549452275528{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">ConsultingWP originated in 1985 with five principals dedicated to integrity and excellence in economic and financial consulting.</h6>\r\n[/vc_column_text][vc_column_text]<span style=\"line-height: 22px;\">Through gaining experience in various economic periods, our team are able to identify the best opportunities whether we are in good times or bad times. Good times provide growth in our portfolio and bad times, despite the potential negative effects, can provide opportunities.</span>[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">We see ourselves as a forward looking group of passionate property professionals with the relevant experience to match.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Why choose us\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769868945{margin-bottom: 39px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485526502077{margin-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"16\" icon_color=\"custom\" icon_width=\"70\" title=\"Travel and Aviation\r\nConsulting\" css=\".vc_custom_1540890523577{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Consultants ranked firms on a scale of one to 10, based on prestige, firm culture, work-life balance, compensation, and other factors.</span>[/stm_icon_box][stm_icon_box icon=\"fa fa-university\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Services\r\nConsulting\" css=\".vc_custom_1540890529159{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a dynamic niche consulting firm that has been helping visionary financial services brands convey their true essence.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Business Services\r\nConsulting\" css=\".vc_custom_1540890545257{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.</span>[/stm_icon_box][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Energy and Environment\r\nConsulting\" css=\".vc_custom_1540890550249{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Engage with consumers and inspire the media — we ensure brands are seen and heard in all the right places.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Consumer Products\r\nConsulting\" css=\".vc_custom_1540890555702{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a company that offers design and build services for you from initial sketches to the final construction.</span>[/stm_icon_box][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1555484305136{background-color: #f2f2f2 !important;}\" el_class=\"about-bg-right\"][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1485524615651{margin-bottom: 22px !important;}\"]<span style=\"line-height: 22px;\">In 1990, ConsultingWP combined with Inception Analysis, Incorporated to strengthen its expertise in energy matters and opened its first office in Cupertino. Since then, the company has expanded throughout the United States and Europe to more than 300 people.</span>[/vc_column_text][vc_column_text css=\".vc_custom_1485525238864{margin-bottom: 23px !important;}\"]<span style=\"line-height: 22px;\">We know our clients’ brands inside and out to create bespoke campaigns that bring the brand story to life, engage with consumers and inspire the media.</span>[/vc_column_text][vc_row_inner css=\".vc_custom_1485525262482{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Work fewer hours &amp; make money</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Phenomenal success in our target</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Retain, high-paying customers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul style=\"line-height: 22px;\">\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">You’ll get more done in less time</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Leadership skills to manage team</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Generating millions of dollars</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"54\" xs_spacing=\"54\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"about_full-right_width\"][vc_custom_heading text=\"Our experience\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769880450{margin-bottom: 43px !important;}\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Financial%20Services%22%2C%22value%22%3A%2287%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Business%20Services%22%2C%22value%22%3A%2275%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Consumer%20Products%22%2C%22value%22%3A%2263%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Energy%20and%20Environment%22%2C%22value%22%3A%2250%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%5D\" bgcolor=\"custom\" units=\"%\" css=\".vc_custom_1549443111979{padding-right: 20px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485599609272{margin-bottom: 35px !important;}\"][vc_column][vc_custom_heading text=\"Our team\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}\"][stm_staff_list style=\"grid\" grid_view=\"short\" per_row=\"4\" count=\"8\" link=\"url:http%3A%2F%2Fconsulting.stylemixthemes.com/demo%2Fmilan%2Fcompany-overview%2Four-team-list%2F|title:Join%20our%20team|target:%20_blank|\" link_text=\"Discover our job positions\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"180x96\" items_mobile=\"2\" images=\"5182,5177,5178,5179,5180,5181\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:23:06', '2021-04-21 06:23:06', '', 7234, 'https://qualstream.net/?p=7235', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7236, 1, '2021-04-21 06:59:43', '2021-04-21 06:59:43', '<p>[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]</p>\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\n<p>[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]</p>\n<blockquote style=\"background-color: #ffffff;\"><p>QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</p></blockquote>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7244\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]</p>\n<blockquote style=\"background-color: #ffffff;\"><p>At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</p></blockquote>\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row gap=\"20\"][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-gem\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618988382088{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"fas fa-search\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618988346009{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-thumbs-up\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618988307315{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-handshake\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618988252507{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport<br />\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-autosave-v1', '', '', '2021-04-21 06:59:43', '2021-04-21 06:59:43', '', 7234, 'https://qualstream.net/?p=7236', 0, 'revision', '', 0),
(7237, 1, '2021-04-21 06:25:06', '2021-04-21 06:25:06', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_column_text css=\".vc_custom_1549452275528{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">ConsultingWP originated in 1985 with five principals dedicated to integrity and excellence in economic and financial consulting.</h6>\r\n[/vc_column_text][vc_column_text]<span style=\"line-height: 22px;\">Through gaining experience in various economic periods, our team are able to identify the best opportunities whether we are in good times or bad times. Good times provide growth in our portfolio and bad times, despite the potential negative effects, can provide opportunities.</span>[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">We see ourselves as a forward looking group of passionate property professionals with the relevant experience to match.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Why choose us\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769868945{margin-bottom: 39px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485526502077{margin-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"16\" icon_color=\"custom\" icon_width=\"70\" title=\"Travel and Aviation\r\nConsulting\" css=\".vc_custom_1540890523577{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Consultants ranked firms on a scale of one to 10, based on prestige, firm culture, work-life balance, compensation, and other factors.</span>[/stm_icon_box][stm_icon_box icon=\"fa fa-university\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Services\r\nConsulting\" css=\".vc_custom_1540890529159{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a dynamic niche consulting firm that has been helping visionary financial services brands convey their true essence.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Business Services\r\nConsulting\" css=\".vc_custom_1540890545257{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.</span>[/stm_icon_box][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Energy and Environment\r\nConsulting\" css=\".vc_custom_1540890550249{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Engage with consumers and inspire the media — we ensure brands are seen and heard in all the right places.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Consumer Products\r\nConsulting\" css=\".vc_custom_1540890555702{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a company that offers design and build services for you from initial sketches to the final construction.</span>[/stm_icon_box][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1555484305136{background-color: #f2f2f2 !important;}\" el_class=\"about-bg-right\"][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1485524615651{margin-bottom: 22px !important;}\"]<span style=\"line-height: 22px;\">In 1990, ConsultingWP combined with Inception Analysis, Incorporated to strengthen its expertise in energy matters and opened its first office in Cupertino. Since then, the company has expanded throughout the United States and Europe to more than 300 people.</span>[/vc_column_text][vc_column_text css=\".vc_custom_1485525238864{margin-bottom: 23px !important;}\"]<span style=\"line-height: 22px;\">We know our clients’ brands inside and out to create bespoke campaigns that bring the brand story to life, engage with consumers and inspire the media.</span>[/vc_column_text][vc_row_inner css=\".vc_custom_1485525262482{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Work fewer hours &amp; make money</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Phenomenal success in our target</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Retain, high-paying customers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul style=\"line-height: 22px;\">\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">You’ll get more done in less time</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Leadership skills to manage team</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Generating millions of dollars</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"54\" xs_spacing=\"54\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"about_full-right_width\"][vc_custom_heading text=\"Our experience\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769880450{margin-bottom: 43px !important;}\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Financial%20Services%22%2C%22value%22%3A%2287%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Business%20Services%22%2C%22value%22%3A%2275%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Consumer%20Products%22%2C%22value%22%3A%2263%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Energy%20and%20Environment%22%2C%22value%22%3A%2250%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%5D\" bgcolor=\"custom\" units=\"%\" css=\".vc_custom_1549443111979{padding-right: 20px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485599609272{margin-bottom: 35px !important;}\"][vc_column][vc_custom_heading text=\"Our team\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}\"][stm_staff_list style=\"grid\" grid_view=\"short\" per_row=\"4\" count=\"8\" link=\"url:http%3A%2F%2Fconsulting.stylemixthemes.com/demo%2Fmilan%2Fcompany-overview%2Four-team-list%2F|title:Join%20our%20team|target:%20_blank|\" link_text=\"Discover our job positions\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"180x96\" items_mobile=\"2\" images=\"5182,5177,5178,5179,5180,5181\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:25:06', '2021-04-21 06:25:06', '', 7234, 'https://qualstream.net/?p=7237', 0, 'revision', '', 0),
(7238, 1, '2021-04-21 06:28:08', '2021-04-21 06:28:08', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Why choose us\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769868945{margin-bottom: 39px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485526502077{margin-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-airplane\" style=\"icon_left\" icon_size=\"16\" icon_color=\"custom\" icon_width=\"70\" title=\"Travel and Aviation\r\nConsulting\" css=\".vc_custom_1540890523577{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Consultants ranked firms on a scale of one to 10, based on prestige, firm culture, work-life balance, compensation, and other factors.</span>[/stm_icon_box][stm_icon_box icon=\"fa fa-university\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Financial Services\r\nConsulting\" css=\".vc_custom_1540890529159{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a dynamic niche consulting firm that has been helping visionary financial services brands convey their true essence.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Business Services\r\nConsulting\" css=\".vc_custom_1540890545257{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We have had to start competing on quality of life in a way that they never had to before — leading to higher ratings from consultants.</span>[/stm_icon_box][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Energy and Environment\r\nConsulting\" css=\".vc_custom_1540890550249{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">Engage with consumers and inspire the media — we ensure brands are seen and heard in all the right places.</span>[/stm_icon_box][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Consumer Products\r\nConsulting\" css=\".vc_custom_1540890555702{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">We are a company that offers design and build services for you from initial sketches to the final construction.</span>[/stm_icon_box][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1555484305136{background-color: #f2f2f2 !important;}\" el_class=\"about-bg-right\"][vc_column width=\"1/2\"][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"10\" xs_spacing=\"10\"][vc_custom_heading text=\"Our mission\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769875560{margin-top: 50px !important;margin-bottom: 25px !important;}\"][vc_column_text css=\".vc_custom_1485524615651{margin-bottom: 22px !important;}\"]<span style=\"line-height: 22px;\">In 1990, ConsultingWP combined with Inception Analysis, Incorporated to strengthen its expertise in energy matters and opened its first office in Cupertino. Since then, the company has expanded throughout the United States and Europe to more than 300 people.</span>[/vc_column_text][vc_column_text css=\".vc_custom_1485525238864{margin-bottom: 23px !important;}\"]<span style=\"line-height: 22px;\">We know our clients’ brands inside and out to create bespoke campaigns that bring the brand story to life, engage with consumers and inspire the media.</span>[/vc_column_text][vc_row_inner css=\".vc_custom_1485525262482{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Work fewer hours &amp; make money</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Phenomenal success in our target</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Retain, high-paying customers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<ul style=\"line-height: 22px;\">\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">You’ll get more done in less time</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Leadership skills to manage team</li>\r\n 	<li style=\"line-height: 22px; font-size: 13px;\">Generating millions of dollars</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"50\" md_spacing=\"50\" sm_spacing=\"54\" xs_spacing=\"54\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1559539463780{padding-top: 52px !important;padding-bottom: 95px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"about_full-right_width\"][vc_custom_heading text=\"Our experience\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769880450{margin-bottom: 43px !important;}\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22Financial%20Services%22%2C%22value%22%3A%2287%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Business%20Services%22%2C%22value%22%3A%2275%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Consumer%20Products%22%2C%22value%22%3A%2263%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%2C%7B%22label%22%3A%22Energy%20and%20Environment%22%2C%22value%22%3A%2250%22%2C%22color%22%3A%22custom%22%2C%22customtxtcolor%22%3A%22%23ffffff%22%7D%5D\" bgcolor=\"custom\" units=\"%\" css=\".vc_custom_1549443111979{padding-right: 20px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1485599609272{margin-bottom: 35px !important;}\"][vc_column][vc_custom_heading text=\"Our team\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1544769918498{margin-top: 50px !important;margin-bottom: 30px !important;}\"][stm_staff_list style=\"grid\" grid_view=\"short\" per_row=\"4\" count=\"8\" link=\"url:http%3A%2F%2Fconsulting.stylemixthemes.com/demo%2Fmilan%2Fcompany-overview%2Four-team-list%2F|title:Join%20our%20team|target:%20_blank|\" link_text=\"Discover our job positions\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1485599202663{padding-top: 44px !important;padding-bottom: 44px !important;background-color: #f2f2f2 !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"180x96\" items_mobile=\"2\" images=\"5182,5177,5178,5179,5180,5181\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:28:08', '2021-04-21 06:28:08', '', 7234, 'https://qualstream.net/?p=7238', 0, 'revision', '', 0),
(7239, 1, '2021-04-21 06:34:28', '2021-04-21 06:34:28', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618986781301{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:34:28', '2021-04-21 06:34:28', '', 7234, 'https://qualstream.net/?p=7239', 0, 'revision', '', 0),
(7240, 1, '2021-04-21 06:35:37', '2021-04-21 06:35:37', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618986781301{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:35:37', '2021-04-21 06:35:37', '', 7234, 'https://qualstream.net/?p=7240', 0, 'revision', '', 0),
(7241, 1, '2021-04-21 06:39:02', '2021-04-21 06:39:02', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_video link=\"https://www.youtube.com/embed/w0RGnXpf9LU\" image=\"5153\" css=\".vc_custom_1555483410157{padding-top: 3px !important;}\" height_size=\"264\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618986781301{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:39:02', '2021-04-21 06:39:02', '', 7234, 'https://qualstream.net/?p=7241', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7243, 1, '2021-04-21 06:45:07', '2021-04-21 06:45:07', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7242\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618986781301{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:45:07', '2021-04-21 06:45:07', '', 7234, 'https://qualstream.net/?p=7243', 0, 'revision', '', 0),
(7244, 1, '2021-04-21 06:48:29', '2021-04-21 06:48:29', '', 'about-us-qs', '', 'inherit', 'open', 'closed', '', 'about-us-qs', '', '', '2021-04-21 06:48:29', '2021-04-21 06:48:29', '', 7234, 'https://qualstream.net/wp-content/uploads/2021/04/about-us-qs.jpg', 0, 'attachment', 'image/jpeg', 0),
(7245, 1, '2021-04-21 06:49:12', '2021-04-21 06:49:12', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7244\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row gap=\"20\"][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618986781301{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:49:12', '2021-04-21 06:49:12', '', 7234, 'https://qualstream.net/?p=7245', 0, 'revision', '', 0),
(7246, 1, '2021-04-21 06:49:52', '2021-04-21 06:49:52', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7244\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row gap=\"20\"][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-diamond\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618986735921{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-statistics\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618987789676{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-idea\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618986817982{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"stm-cart_13\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618986852065{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:49:52', '2021-04-21 06:49:52', '', 7234, 'https://qualstream.net/?p=7246', 0, 'revision', '', 0),
(7248, 1, '2021-04-21 06:51:28', '2021-04-21 06:51:28', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 06:51:28', '2021-04-21 06:51:28', '', 6926, 'https://qualstream.net/?p=7248', 0, 'revision', '', 0),
(7250, 1, '2021-04-21 06:52:11', '2021-04-21 06:52:11', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 06:52:11', '2021-04-21 06:52:11', '', 6926, 'https://qualstream.net/?p=7250', 0, 'revision', '', 0),
(7252, 1, '2021-04-21 06:54:07', '2021-04-21 06:54:07', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 06:54:07', '2021-04-21 06:54:07', '', 6926, 'https://qualstream.net/?p=7252', 0, 'revision', '', 0),
(7254, 1, '2021-04-21 06:56:36', '2021-04-21 06:56:36', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 06:56:36', '2021-04-21 06:56:36', '', 6926, 'https://qualstream.net/?p=7254', 0, 'revision', '', 0),
(7255, 1, '2021-04-21 06:59:45', '2021-04-21 06:59:45', '[vc_row full_width=\"stretch_row\" css=\".vc_custom_1618986303496{margin-top: -75px !important;margin-bottom: 55px !important;padding-top: 130px !important;padding-bottom: 78px !important;background-color: #f2f2f2 !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\"][vc_custom_heading text=\"About QualStream\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986374799{margin-bottom: 39px !important;}\"][vc_column_text css=\".vc_custom_1618986423636{margin-bottom: 25px !important;}\" el_class=\"under_none\"]\r\n<h6 style=\"font-weight: 400; line-height: 26px;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</h6>\r\n[/vc_column_text][vc_column_text]QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.[/vc_column_text][vc_column_text]\r\n<blockquote style=\"background-color: #ffffff;\">QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service. We strive to maintain this reputation by employing and developing talented professionals in a creative, motivating, and fun work environment.</blockquote>\r\n[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][vc_column offset=\"vc_col-lg-5 vc_col-md-5\"][vc_single_image image=\"7244\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"Our Provision\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618986532730{margin-bottom: 39px !important;}\"][vc_column_text el_class=\"about-sec-wrap\"]\r\n<blockquote style=\"background-color: #ffffff;\">At QualStream, you are encouraged to think out of the box. We enable our colleagues to explore their ideas by creating a collaborative and entrepreneurial environment. If you consider yourself ready for a challenging but rewarding career, at QualStream, you will feel right at home.</blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row gap=\"20\"][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-gem\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Value\" css=\".vc_custom_1618988382088{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We focus on value added quality and customer satisfaction solutions.We focus on value added quality and customer satisfaction solutions.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"fas fa-search\" style=\"icon_left\" icon_size=\"22\" icon_color=\"custom\" icon_width=\"70\" title=\"Analysis\" css=\".vc_custom_1618988346009{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]Our analysis is based on our dedication to work and are transparent in all services and strive for best growth and success.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-thumbs-up\" style=\"icon_left\" icon_size=\"28\" icon_color=\"custom\" icon_width=\"70\" title=\"Quality\" css=\".vc_custom_1618988307315{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We have a good record of exceeding the customer satisfactions with best practices of remarkable services.[/stm_icon_box][/vc_column][vc_column width=\"1/4\"][stm_icon_box icon=\"far fa-handshake\" style=\"icon_left\" icon_size=\"20\" icon_color=\"custom\" icon_width=\"70\" title=\"Integrity\" css=\".vc_custom_1618988252507{margin-bottom: 28px !important;}\" icon_color_custom=\"#ffffff\"]We follow all the norms set by best business policies and are prudent in delivering and maintaining it.[/stm_icon_box][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1618986865836{margin-bottom: 30px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][stm_icon_box icon=\"stm-truck\" style=\"icon_left\" icon_size=\"18\" icon_color=\"custom\" icon_width=\"70\" title=\"Surface Transport\r\n&amp; Logistics Consulting\" icon_color_custom=\"#ffffff\"]<span style=\"line-height: 24px;\">The ConsultingWP firm scored highest for vacation policy, hours in the office, and overall satisfaction.</span>[/stm_icon_box][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"40\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"third_bg_color\" css=\".vc_custom_1451889219674{margin-bottom: -60px !important;}\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_button_block=\"true\" btn_add_icon=\"true\" el_class=\"third_bg_color\" css=\".vc_custom_1545390635044{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'About Us', '', 'inherit', 'closed', 'closed', '', '7234-revision-v1', '', '', '2021-04-21 06:59:45', '2021-04-21 06:59:45', '', 7234, 'https://qualstream.net/?p=7255', 0, 'revision', '', 0),
(7257, 1, '2021-04-21 07:00:45', '2021-04-21 07:00:45', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:00:45', '2021-04-21 07:00:45', '', 6926, 'https://qualstream.net/?p=7257', 0, 'revision', '', 0),
(7259, 1, '2021-04-21 07:01:22', '2021-04-21 07:01:22', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n#footer .widgets_row {\n    padding-top: 86px;\n}\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:01:22', '2021-04-21 07:01:22', '', 6926, 'https://qualstream.net/?p=7259', 0, 'revision', '', 0),
(7261, 1, '2021-04-21 07:02:51', '2021-04-21 07:02:51', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:02:51', '2021-04-21 07:02:51', '', 6926, 'https://qualstream.net/?p=7261', 0, 'revision', '', 0),
(7267, 1, '2021-04-21 07:09:32', '2021-04-21 07:09:32', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n\n\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:09:32', '2021-04-21 07:09:32', '', 6926, 'https://qualstream.net/?p=7267', 0, 'revision', '', 0),
(7269, 1, '2021-04-21 07:09:59', '2021-04-21 07:09:59', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n.stm_news .news_list li .date:before {\n background: #eb900d;\n}\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:09:59', '2021-04-21 07:09:59', '', 6926, 'https://qualstream.net/?p=7269', 0, 'revision', '', 0),
(7271, 1, '2021-04-21 07:10:41', '2021-04-21 07:10:41', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n.stm_news .news_list li .date:before {\n color: #eb900d;\n}\n\n\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 07:10:41', '2021-04-21 07:10:41', '', 6926, 'https://qualstream.net/?p=7271', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7272, 1, '2021-04-21 07:21:04', '2021-04-21 07:21:04', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][vc_tta_tabs][vc_tta_section title=\"USA Office\" tab_id=\"1618989575731-8ac4d556-aee9\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Tab 2\" tab_id=\"1618989575769-aee1736e-eac3\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:21:04', '2021-04-21 07:21:04', '', 6484, 'https://qualstream.net/?p=7272', 0, 'revision', '', 0),
(7273, 1, '2021-04-21 07:22:43', '2021-04-21 07:22:43', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][vc_tta_tabs][vc_tta_section title=\"USA Office\" tab_id=\"1618989575731-8ac4d556-aee9\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyMjUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Tab 2\" tab_id=\"1618989575769-aee1736e-eac3\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:22:43', '2021-04-21 07:22:43', '', 6484, 'https://qualstream.net/?p=7273', 0, 'revision', '', 0),
(7274, 1, '2021-04-21 07:23:17', '2021-04-21 07:23:17', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1617636202904{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][vc_tta_tabs][vc_tta_section title=\"USA Office\" tab_id=\"1618989575731-8ac4d556-aee9\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Tab 2\" tab_id=\"1618989575769-aee1736e-eac3\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:23:17', '2021-04-21 07:23:17', '', 6484, 'https://qualstream.net/?p=7274', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7275, 1, '2021-04-21 07:25:24', '2021-04-21 07:25:24', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1617636349816{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636868855{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1617636968215{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 37px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:25:24', '2021-04-21 07:25:24', '', 6484, 'https://qualstream.net/?p=7275', 0, 'revision', '', 0),
(7276, 1, '2021-04-21 07:26:27', '2021-04-21 07:26:27', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618989963145{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618989972392{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618989985880{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:26:27', '2021-04-21 07:26:27', '', 6484, 'https://qualstream.net/?p=7276', 0, 'revision', '', 0),
(7277, 1, '2021-04-21 07:29:02', '2021-04-21 07:29:02', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:29:02', '2021-04-21 07:29:02', '', 6484, 'https://qualstream.net/?p=7277', 0, 'revision', '', 0),
(7278, 1, '2021-04-21 07:32:13', '2021-04-21 07:32:13', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:32:13', '2021-04-21 07:32:13', '', 6484, 'https://qualstream.net/?p=7278', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7279, 1, '2021-04-21 07:33:54', '2021-04-21 07:33:54', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:33:54', '2021-04-21 07:33:54', '', 6484, 'https://qualstream.net/?p=7279', 0, 'revision', '', 0),
(7280, 1, '2021-04-21 07:35:40', '2021-04-21 07:35:40', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 07:35:40', '2021-04-21 07:35:40', '', 6484, 'https://qualstream.net/?p=7280', 0, 'revision', '', 0),
(7281, 1, '2021-04-21 08:05:59', '2021-04-21 08:05:59', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1618992357058{padding-left: 30px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 08:05:59', '2021-04-21 08:05:59', '', 6484, 'https://qualstream.net/?p=7281', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7282, 1, '2021-04-21 08:07:31', '2021-04-21 08:07:31', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1618992357058{padding-left: 30px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959180438{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 08:07:31', '2021-04-21 08:07:31', '', 6484, 'https://qualstream.net/?p=7282', 0, 'revision', '', 0),
(7283, 1, '2021-04-21 08:14:46', '2021-04-21 08:14:46', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1618992357058{padding-left: 30px !important;}\"][vc_custom_heading text=\"Contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618992860192{margin-bottom: 30px !important;}\"][stm_contact image=\"758\" email=\"info@qulstream.net\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 08:14:46', '2021-04-21 08:14:46', '', 6484, 'https://qualstream.net/?p=7283', 0, 'revision', '', 0),
(7284, 1, '2021-04-21 08:16:26', '2021-04-21 08:16:26', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row css=\".vc_custom_1618992982292{padding-top: 10px !important;}\"][vc_column width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1618992357058{padding-left: 30px !important;}\"][vc_custom_heading text=\"Contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618992860192{margin-bottom: 30px !important;}\"][stm_contact image=\"758\" email=\"info@qulstream.net\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 08:16:26', '2021-04-21 08:16:26', '', 6484, 'https://qualstream.net/?p=7284', 0, 'revision', '', 0),
(7285, 1, '2021-04-21 08:22:02', '2021-04-21 08:22:02', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,<br />\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1618993257871{padding-left: 30px !important;}\"][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618992860192{margin-bottom: 30px !important;}\"][stm_contact image=\"758\" email=\"info@qulstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-04-21 08:22:02', '2021-04-21 08:22:02', '', 6484, 'https://qualstream.net/?p=7285', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7287, 1, '2021-04-21 08:24:13', '2021-04-21 08:24:13', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n.stm_news .news_list li .date:before {\n color: #eb900d;\n}\n\n.wpcf7 form .wpcf7-response-output {\n       display: none;\n}\n\n\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-21 08:24:13', '2021-04-21 08:24:13', '', 6926, 'https://qualstream.net/?p=7287', 0, 'revision', '', 0),
(7288, 1, '2021-04-22 07:30:05', '2021-04-22 07:30:05', ' ', '', '', 'publish', 'closed', 'closed', '', '7288', '', '', '2021-04-22 07:30:05', '2021-04-22 07:30:05', '', 0, 'https://qualstream.net/?p=7288', 20, 'nav_menu_item', '', 0),
(7290, 1, '2021-04-22 07:32:15', '2021-04-22 07:32:15', 'body .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat {\n    background-color: #eb900d;\n}\n\nbody .vc_general.vc_btn3.vc_btn3-color-theme_style_4.vc_btn3-style-flat:hover {\n    background-color: #fff;\n    color: #eb900d;\n}\n\n.vc_custom_heading mark {\n    color: #eb900d;\n}\n\n.vc_custom_heading .icon {\n	color: #eb900d;\n}\n\n.vc_column_container>.vc_column-inner {\n	padding:0px;\n}\n\n.inner-head-wrap blockquote {\n    padding: 0px 30px 18px;\n}\n\nh4:after{\n	background: #eb900d;\n}\n\nblockquote {\n	border-left: 5px solid #eb900d;}\n\n.info_box ul li:before {\n	color: #eb900d;\n}\n\nh2:after{\n	background: #eb900d;\n}\n\n#main {\n    padding: 0px;\n}\n\n.heading-wrap span.subtitle {\n    font-size: 26px;\n    color: white;\n}\n\nh1:after{\n	    background: #eb900d;\n}\n\n.wpb_text_column ul li {\n    list-style: inside;\n}\n\nh3:after{\n	background: #eb900d;\n}\n\nh5:after{\n	background: #eb900d;\n}\n\n.third_bg_color {\n    background-color: #94c6fe!important;\n}\n\n.about-sec-wrap blockquote {\n    background-color: #f2f2f2 !important;\n}\n\n.stm_list-duty li i {\n	color: #eb900d;\n}\n\n.stm_news .news_list li h5:before {\n    background: #eb900d;\n}\n\n.stm_news .news_list li .date:before {\n color: #eb900d;\n}\n\n.wpcf7 form .wpcf7-response-output {\n       display: none;\n}\n\n.stm-amsterdam-arrow {\n    color: #eb900d;\n}\n\n\n\n\n', 'consulting', '', 'inherit', 'closed', 'closed', '', '6926-revision-v1', '', '', '2021-04-22 07:32:15', '2021-04-22 07:32:15', '', 6926, 'https://qualstream.net/?p=7290', 0, 'revision', '', 0),
(7291, 1, '2021-05-01 07:29:00', '2021-05-01 07:29:00', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\" custom_links=\"/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/,/company-overview/our-partners/\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 07:29:00', '2021-05-01 07:29:00', '', 1071, 'https://qualstream.net/?p=7291', 0, 'revision', '', 0),
(7292, 1, '2021-05-01 07:29:54', '2021-05-01 07:29:54', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" h_centered=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 07:29:54', '2021-05-01 07:29:54', '', 1071, 'https://qualstream.net/?p=7292', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7293, 1, '2021-05-01 07:30:27', '2021-05-01 07:30:27', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 07:30:27', '2021-05-01 07:30:27', '', 1071, 'https://qualstream.net/?p=7293', 0, 'revision', '', 0),
(7294, 1, '2021-05-01 07:32:54', '2021-05-01 07:32:54', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][vc_row_inner][vc_column_inner][stm_image_carousel grayscale=\"yes\" h_centered=\"yes\" img_size=\"full\" style=\"style_3\" images=\"6962,6961,6960,6959,6958\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 07:32:54', '2021-05-01 07:32:54', '', 1071, 'https://qualstream.net/?p=7294', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7295, 1, '2021-05-01 07:33:59', '2021-05-01 07:33:59', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 07:33:59', '2021-05-01 07:33:59', '', 1071, 'https://qualstream.net/?p=7295', 0, 'revision', '', 0),
(7296, 1, '2021-05-01 08:06:40', '2021-05-01 08:06:40', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" style=\"style_2\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:06:40', '2021-05-01 08:06:40', '', 1071, 'https://qualstream.net/?p=7296', 0, 'revision', '', 0),
(7297, 1, '2021-05-01 08:07:54', '2021-05-01 08:07:54', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1559819599193{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:07:54', '2021-05-01 08:07:54', '', 1071, 'https://qualstream.net/?p=7297', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7298, 1, '2021-05-01 08:08:50', '2021-05-01 08:08:50', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:08:50', '2021-05-01 08:08:50', '', 1071, 'https://qualstream.net/?p=7298', 0, 'revision', '', 0),
(7299, 1, '2021-05-01 08:14:54', '2021-05-01 08:14:54', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" h_centered=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:14:54', '2021-05-01 08:14:54', '', 1071, 'https://qualstream.net/?p=7299', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7300, 1, '2021-05-01 08:33:14', '2021-05-01 08:33:14', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][stm_image_carousel grayscale=\"yes\" img_size=\"190x96\" items=\"5\" items_mobile=\"2\" images=\"6958,6959,6960,6961,6962\"][vc_row_inner][vc_column_inner][vc_images_carousel images=\"6962,6958,6959,6960,6961\" img_size=\"full\" onclick=\"link_no\" slides_per_view=\"5\" autoplay=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:33:14', '2021-05-01 08:33:14', '', 1071, 'https://qualstream.net/?p=7300', 0, 'revision', '', 0),
(7301, 1, '2021-05-01 08:34:34', '2021-05-01 08:34:34', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_images_carousel images=\"6962,6958,6959,6960,6961\" img_size=\"full\" onclick=\"link_no\" slides_per_view=\"5\" autoplay=\"yes\" hide_pagination_control=\"yes\" hide_prev_next_buttons=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:34:34', '2021-05-01 08:34:34', '', 1071, 'https://qualstream.net/?p=7301', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7302, 1, '2021-05-01 08:35:38', '2021-05-01 08:35:38', '<p>[vc_row][vc_column][rev_slider_vc alias=\"highlight-carousel7\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"What We Do\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554209030{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"/services-grid/\">All Services <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][vc_row_inner css=\".vc_custom_1617710726590{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"30\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"stm-money_flower\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Financial Planning\" css=\".vc_custom_1617710829715{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">Online retail banking has been surging as an industry over the last decade. Many banks have developed and deployed solutions which allow consumers Online retail banking has been surging as an industry over the last decade.</p>\n<p>&nbsp;[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-briefcase-medical\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Health Care\" css=\".vc_custom_1617710846332{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The healthcare industry stands on the brink of potential change at possibly unprecedented levels due to the ongoing discussions over healthcare reform and the Affordable Care Act. However, that uncertainty also means</p>\n<p>[/stm_icon_box][/vc_column_inner][vc_column_inner width=\"1/3\"][stm_spacing lg_spacing=\"56\" md_spacing=\"56\" sm_spacing=\"40\" xs_spacing=\"40\"][stm_icon_box hide_title_line=\"hide_title_line\" icon=\"fas fa-headset\" icon_size=\"80\" icon_color=\"secondary\" icon_bg_color=\"custom\" icon_height=\"80\" title=\"Media and Telecom\" css=\".vc_custom_1617710857096{padding-right: 10px !important;padding-left: 10px !important;}\"]</p>\n<p style=\"line-height: 26px; font-size: 16px; color: #828282;\">The Telecom industry continues to transform and change, driven by an increase in demand for both mobile and broadband technologies. This push will require upgrades to network infrastructures for many telecom providers.</p>\n<p>[/stm_icon_box][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1617704401134{background: #eb900d url(https://qualstream.net/wp-content/uploads/2021/04/mid-banner.jpg?id=6922) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"74\" md_spacing=\"74\" sm_spacing=\"50\" xs_spacing=\"60\"][vc_row_inner content_placement=\"middle\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" width=\"5/6\" offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text css=\".vc_custom_1618398293582{margin-bottom: 0px !important;}\"]</p>\n<h3 class=\"no_stripe\" style=\"font-size: 30px; padding-top: 0;\"><span style=\"color: #ffffff;\">IT Solutions,</span>  <span style=\"color: #eb900d;\">Consulting Services </span><span style=\"color: #ffffff;\">and </span><span style=\"color: #ffffff;\">Staffing</span></h3>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"0\" md_spacing=\"0\" sm_spacing=\"30\" xs_spacing=\"30\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_btn title=\"Know More\" style=\"flat\" color=\"theme_style_4\" size=\"lg\" align=\"right\" link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fconsulting-business-finance-wordpress-theme%2F14740561%3Fref%3Dstylemixthemes%26license%3Dregular%26open_purchase_for_item_id%3D14740561%26purchasable%3Dsource|||\" el_class=\"mobile_align_center\" css=\".vc_custom_1617704712082{margin-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"76\" md_spacing=\"76\" sm_spacing=\"60\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner][vc_single_image image=\"6932\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"0\" xs_spacing=\"0\"][/vc_column][vc_column el_class=\"vc_column-inner-mobile-spacings\" css=\".vc_custom_1559280200225{padding-left: 46px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6\"][stm_spacing lg_spacing=\"120\" md_spacing=\"120\" sm_spacing=\"40\" xs_spacing=\"40\"][vc_custom_heading stripe_pos=\"hide\" text=\"The Significant Differentiators that Ensured to Enhance the Success of QualStream Technologies Are\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618549407995{margin-top: -15px !important;margin-bottom: -5px !important;}\"][vc_column_text css=\".vc_custom_1617704978936{margin-bottom: 28px !important;}\"]</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Refined Client favorable Business Model</span></li>\n<li class=\"p1\"><span class=\"s1\">Global Presence: Offices in US &amp; INDIA</span></li>\n<li class=\"p1\"><span class=\"s1\">Allied Partner of Global Leaders</span></li>\n<li class=\"p1\"><span class=\"s1\">Focused Competencies</span></li>\n<li class=\"p1\"><span class=\"s1\">Proven Methodology</span></li>\n<li class=\"p2\"><span class=\"s1\">Continuous Improvement</span></li>\n<li class=\"p1\"><span class=\"s1\">Commitment to Quality</span></li>\n<li class=\"p1\"><span class=\"s1\">Domain Expertise</span></li>\n<li class=\"p1\"><span class=\"s1\">Technology Competence</span></li>\n</ul>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" el_class=\"overlay_2 fixed_bg\" css=\".vc_custom_1617710563007{background-image: url(https://qualstream.net/wp-content/uploads/2021/04/mid-img.jpg?id=6971) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"70\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-9 vc_col-md-10\"][vc_custom_heading icon=\"stm-check\" icon_size=\"67\" text=\"More than 10 years of experience in the field of <mark>IT Solutions, Consulting Services and  Staffing Services. </mark>\" font_container=\"tag:h4|font_size:45px|text_align:left|color:%23ffffff|line_height:45px\" use_theme_fonts=\"yes\" el_class=\"no_stripe mobile_align_center custom_count_title\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-2\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-offset-1 vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"321\" title=\"Cases completed\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"27\" title=\"Consultants\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"125\" title=\"Awards winning\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-6\"][stm_stats_counter counter_value=\"100\" counter_value_suf=\"%\" title=\"Satisfied customers\"][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"100\" md_spacing=\"100\" sm_spacing=\"80\" xs_spacing=\"80\"][/vc_column][/vc_row][vc_row][vc_column][stm_spacing lg_spacing=\"92\" md_spacing=\"92\" sm_spacing=\"92\" xs_spacing=\"65\"][vc_row_inner content_placement=\"middle\"][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_custom_heading stripe_pos=\"hide\" text=\"Blogs\" use_theme_fonts=\"yes\" el_class=\"hide_indents mobile_align_center\"][/vc_column_inner][vc_column_inner el_class=\"mobile_align_center\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text css=\".vc_custom_1559554231326{margin-top: 15px !important;}\"]</p>\n<p style=\"text-align: right; font-size: 16px;\"><a style=\"font-weight: 600;\" href=\"berlin/blog/?layout=grid&amp;sidebar_id=none\">All News <i class=\"vc_btn3-icon stm-amsterdam-arrow\" style=\"font-size: 10px;\"></i></a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_spacing lg_spacing=\"30\" md_spacing=\"30\" sm_spacing=\"30\" xs_spacing=\"30\"][vc_separator color=\"custom\" accent_color=\"rgba(33,33,33,0.3)\"][stm_news posts_per_row=\"4\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"50\" xs_spacing=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1617710068473{background: #002e5b url(https://qualstream.net/wp-content/uploads/2021/04/world-map-digital.jpg?id=6956) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column stretch=\"left\" width=\"1/2\" css=\".vc_custom_1559304836998{background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6966\" img_size=\"full\" css=\".vc_custom_1617709986573{padding-right: 0px !important;padding-left: 0px !important;}\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1559304841229{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-5\"][stm_spacing lg_spacing=\"60\" md_spacing=\"60\" sm_spacing=\"60\" xs_spacing=\"40\"][vc_custom_heading text=\"Values\" font_container=\"tag:h3|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" el_class=\"no_stripe\" css=\".vc_custom_1559305015013{margin-bottom: -20px !important;}\"][vc_column_text css=\".vc_custom_1618549529357{margin-bottom: 0px !important;}\"]</p>\n<div class=\"vc_custom_heading align7 vc_custom_1603283524669 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. QualStream partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions.</span></p>\n<p>&nbsp;</p>\n</div>\n<div class=\"vc_custom_heading vc_custom_1603283551244 text_align_justify title_no_stripe\">\n<p><span style=\"color: #ffffff;\">QualStream core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability. QualStream delivers custom-tailored Internet, client / server, and database solutions to clients around the world. Founded on the principle of Integrity and Excellence, QualStream has developed a reputation for uncompromising quality and service</span></p>\n</div>\n<p>[/vc_column_text][stm_spacing lg_spacing=\"85\" md_spacing=\"85\" sm_spacing=\"80\" xs_spacing=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1619856524914{padding-top: 42px !important;padding-bottom: 39px !important;background-color: rgba(153,153,153,0.08) !important;*background-color: rgb(153,153,153) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_images_carousel images=\"6962,6958,6959,6960,6961\" img_size=\"full\" onclick=\"link_no\" slides_per_view=\"5\" hide_pagination_control=\"yes\" hide_prev_next_buttons=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1617706117568{margin-bottom: 0px !important;padding-bottom: 0px !important;}\" el_class=\"full_height_columns\"][vc_column width=\"1/2\" css=\".vc_custom_1559294658220{margin-bottom: 0px !important;padding-right: 25px !important;padding-bottom: 0px !important;padding-left: 25px !important;}\"][stm_spacing lg_spacing=\"70\" md_spacing=\"70\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Contact Information\" font_container=\"tag:h2|font_size:42|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294663117{margin-bottom: 37px !important;}\"][vc_column_text css=\".vc_custom_1559294798084{margin-bottom: 20px !important;}\"]<span style=\"color: #595959; font-size: 15px;\">Do you have questions about how I can help your company? Send me an email and I’ll get in touch shortly, or phone between 8:00 and 18:00 Monday to Friday — I would be delighted to speak.</span>[/vc_column_text][stm_contacts_widget style=\"style_2\" phone=\"212 386 5575\" email=\"info@consultingwp.com\"][vc_empty_space height=\"20px\"][vc_column_text]<span style=\"color: #595959; font-size: 14px;\">Your details are kept strictly confidential as per our</span> <a style=\"color: #6c98e1; font-size: 14px;\" href=\"#\">Privacy Policy.</a>[/vc_column_text][stm_spacing lg_spacing=\"49\" md_spacing=\"40\" sm_spacing=\"30\" xs_spacing=\"20\"][vc_row_inner css=\".vc_custom_1559294249366{margin-right: -25px !important;margin-bottom: 0px !important;margin-left: -500px !important;padding-bottom: 50px !important;padding-left: 500px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" el_class=\"secondary_style\"][vc_column_inner css=\".vc_custom_1559294691505{padding-right: 25px !important;padding-left: 0px !important;}\"][stm_spacing lg_spacing=\"96\" md_spacing=\"96\" sm_spacing=\"70\" xs_spacing=\"60\"][vc_custom_heading stripe_pos=\"between\" text=\"Request a Call back\" use_theme_fonts=\"yes\" css=\".vc_custom_1559294682103{margin-bottom: 52px !important;}\" el_class=\"stripe_second_color\"][contact-form-7 id=\"5594\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column stretch=\"right\" width=\"1/2\" css=\".vc_custom_1559294260257{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"full\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '1071-revision-v1', '', '', '2021-05-01 08:35:38', '2021-05-01 08:35:38', '', 1071, 'https://qualstream.net/?p=7302', 0, 'revision', '', 0),
(7304, 1, '2021-06-04 13:02:00', '2021-06-04 13:02:00', '', 'qualstream-logo-final', '', 'inherit', 'open', 'closed', '', 'qualstream-logo-final', '', '', '2021-06-04 13:02:00', '2021-06-04 13:02:00', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/qualstream-logo-final.png', 0, 'attachment', 'image/png', 0),
(7305, 1, '2021-06-05 11:07:53', '2021-06-05 11:07:53', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"USA Office\" tab_id=\"1452257567229-e5f623b2-41c0\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6913\" img_size=\"full\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1618990330892{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMzguNDY2Mzc2Nzg2ODIyJTIxMmQtODAuMDU5NTk0Njg0NjA0NjIlMjEzZDQwLjM5ODUxNzk3OTM2NzI3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODgzNGY3YTYyM2UxYmMzOSUyNTNBMHhmOTM0NWYxMDBiNWZjZGI4JTIxMnMxMDMwJTI1MjBIaWxsZ2F0ZSUyNTIwUGwlMjUyQyUyNTIwUGl0dHNidXJnaCUyNTJDJTI1MjBQQSUyNTIwMTUyMjAlMjUyQyUyNTIwVVNBJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2MDMyNzA5MDUzMDIlMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyMzUwJTIyJTIwaGVpZ2h0JTNEJTIyMzMwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1030 Hillgate place,\r\nPittsburgh – PA 15220\" phone=\"+1 412 223 7653\" email=\"info@qulstream.net\" css=\".vc_custom_1618989919048{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 44px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1618993257871{padding-left: 30px !important;}\"][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1453959190863{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1618992860192{margin-bottom: 30px !important;}\"][stm_contact image=\"758\" email=\"info@qulstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"UK Office\" tab_id=\"1452509683679-b4680d19-a860\" el_class=\"hidden\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6912\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990367381{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI0NjIuODUwODkxODc3OTQyNiUyMTJkLTAuNDM2MjcyMzg0MjgwNzgzMzUlMjEzZDUxLjg4MTkzNDI5MTA3MDI0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4NDg3NjQ4Zjc2YWRmOGMwMyUyNTNBMHhmOTc5ZjkzYmU0ZDY5ZTM4JTIxMnMxJTI1MjBCdXRsaW4lMjUyMFJkJTI1MkMlMjUyMEx1dG9uJTI1MjBMVTElMjUyMDFMQiUyNTJDJTI1MjBVSyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjAzMjcxNzgxNDcwJTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"1 Butlin Road, Luton LU1 1LB, UK\" phone=\"+44 743 836 2916\" email=\"info@qualstream.net\" css=\".vc_custom_1618990139727{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893970639{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540893978830{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Berg Devien\" image=\"758\" job=\"Head of communications\" email=\"berg@consulting.wp\" skype=\"berg.consulting\"][stm_contact name=\"Priscilla Sorvino\" image=\"759\" job=\"Head of communications\" email=\"priscilla@consulting.wp\" skype=\"priscilla.consulting\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:07:53', '2021-06-05 11:07:53', '', 6484, 'https://qualstream.net/?p=7305', 0, 'revision', '', 0),
(7306, 1, '2021-06-05 11:09:34', '2021-06-05 11:09:34', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:09:34', '2021-06-05 11:09:34', '', 6484, 'https://qualstream.net/?p=7306', 0, 'revision', '', 0),
(7307, 1, '2021-06-05 11:10:38', '2021-06-05 11:10:38', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894008487{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:10:38', '2021-06-05 11:10:38', '', 6484, 'https://qualstream.net/?p=7307', 0, 'revision', '', 0),
(7308, 1, '2021-06-05 11:11:33', '2021-06-05 11:11:33', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622891487448{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:11:33', '2021-06-05 11:11:33', '', 6484, 'https://qualstream.net/?p=7308', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7309, 1, '2021-06-05 11:13:31', '2021-06-05 11:13:31', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622891487448{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:13:31', '2021-06-05 11:13:31', '', 6484, 'https://qualstream.net/?p=7309', 0, 'revision', '', 0),
(7310, 1, '2021-06-05 11:21:23', '2021-06-05 11:21:23', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\" Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892081287{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:21:23', '2021-06-05 11:21:23', '', 6484, 'https://qualstream.net/?p=7310', 0, 'revision', '', 0),
(7311, 1, '2021-06-05 11:25:13', '2021-06-05 11:25:13', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892308831{margin-bottom: 30px !important;padding-left: 30px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:25:13', '2021-06-05 11:25:13', '', 6484, 'https://qualstream.net/?p=7311', 0, 'revision', '', 0),
(7312, 1, '2021-06-05 11:26:09', '2021-06-05 11:26:09', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894035623{margin-bottom: 30px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:26:09', '2021-06-05 11:26:09', '', 6484, 'https://qualstream.net/?p=7312', 0, 'revision', '', 0),
(7313, 1, '2021-06-05 11:26:34', '2021-06-05 11:26:34', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Somajiguda, Hyderabad, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990104223{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-05 11:26:34', '2021-06-05 11:26:34', '', 6484, 'https://qualstream.net/?p=7313', 0, 'revision', '', 0),
(7315, 1, '2021-06-13 09:28:18', '2021-06-13 09:28:18', '', 'qualstream-fav', '', 'inherit', 'open', 'closed', '', 'qualstream-fav', '', '', '2021-06-13 09:28:18', '2021-06-13 09:28:18', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/qualstream-fav.png', 0, 'attachment', 'image/png', 0),
(7316, 1, '2021-06-13 11:53:55', '2021-06-13 11:53:55', '', 'qualstream-fav', '', 'inherit', 'open', 'closed', '', 'qualstream-fav-2', '', '', '2021-06-13 11:53:55', '2021-06-13 11:53:55', '', 0, 'https://qualstream.net/wp-content/uploads/2019/09/qualstream-fav-1.png', 0, 'attachment', 'image/png', 0),
(7318, 1, '2021-06-13 11:59:31', '2021-06-13 11:59:31', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"SMR Towers, Road No 3 , Banajarahills, Hyderabad.\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1623585567669{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-13 11:59:31', '2021-06-13 11:59:31', '', 6484, 'https://qualstream.net/?p=7318', 0, 'revision', '', 0),
(7319, 1, '2021-06-13 12:00:44', '2021-06-13 12:00:44', '<p>[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI5MS4yMzA1NTY1MjQ3NzYwMyUyMTJkNzguNDYwNDY5MDQ3NjM3NzclMjEzZDE3LjQyMjg3NTc0NTU5OTY4JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4M2JjYjk3NGM0ZmZmNzNhZCUyNTNBMHhiMWYxYzI0NDU1N2ZlNTMxJTIxMnNWaXN0YSUyNTIwR3JhbmQlMjUyMFRvd2VyJTI1MkMlMjUyMFJhaiUyNTIwQmhhdmFuJTI1MjBSZCUyNTJDJTI1MjBSYWolMjUyMEJoYXZhbiUyNTIwUXVhcnRlcnMlMjUyMENvbG9ueSUyNTJDJTI1MjBTb21hamlndWRhJTI1MkMlMjUyMEh5ZGVyYWJhZCUyNTJDJTI1MjBUZWxhbmdhbmElMjUyMDUwMDA4MiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjE0MzQ3MDAxNDY3JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"SMR Towers, Road No 3, Banajarahills, Hyderabad.\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]</p>\n', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-autosave-v1', '', '', '2021-06-13 12:00:44', '2021-06-13 12:00:44', '', 6484, 'https://qualstream.net/?p=7319', 0, 'revision', '', 0);
INSERT INTO `qs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(7320, 1, '2021-06-13 12:03:49', '2021-06-13 12:03:49', '[vc_row css=\".vc_custom_1459507872760{margin-bottom: 101px !important;}\"][vc_column][vc_tta_tabs shape=\"square\" spacing=\"\" active_section=\"1\" no_fill_content_area=\"true\" el_class=\"theme_style\"][vc_tta_section title=\"Hyderabad (India) Office\" tab_id=\"1452509682381-ee09d239-2bfa\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6910\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990417011{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDQ3NS44MzcwNDQ2Mjc0MzA5JTIxMmQ3OC40NDg1NjgwODQ1NDc1OSUyMTNkMTcuNDI2MzUzNjgyMDY5NiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNiY2I5MGNiM2EwZjMxODElMjUzQTB4ODgzM2Y3ZmY4NzFmZDkyZiUyMTJzU01SJTI1MjBIb2xkaW5ncyUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2luJTIxNHYxNjIzNTg1Nzk5MzQ2JTIxNW0yJTIxMXNlbiUyMTJzaW4lMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"SMR Towers, Road No 3, Banajarahills, Hyderabad.\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1623585630125{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:justify\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892365600{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891427584{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894014390{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Noida (India) Office\" tab_id=\"1452509674811-3f76b61a-6ca1\"][vc_row_inner css=\".vc_custom_1452504967583{margin-bottom: 33px !important;}\"][vc_column_inner width=\"1/3\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"6911\" img_size=\"350x330\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\" css=\".vc_custom_1618990431243{padding-right: 40px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDEwNDEuMzExNzk5MzM1NzYxNiUyMTJkNzcuMzYzMDI3NjEzMjMxNDQlMjEzZDI4LjYxMzUzMDUyOTkzODAzMiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDM5MGNlNTY5ZDFjMTAzMjMlMjUzQTB4OWY2NDJhN2MxY2FmZDQ1ZCUyMTJzVGVjaG5vcG9saXMlMjUyMElUJTI1MjBIdWIlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNpbiUyMTR2MTYxNDM0NjU4MDM2NSUyMTVtMiUyMTFzZW4lMjEyc2luJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"330px\"][stm_spacing lg_spacing=\"0\" md_spacing=\"10\" sm_spacing=\"20\" xs_spacing=\"10\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-6\"][stm_contacts_widget class=\"overlay_3 color_white\" title=\"Contact details\" address=\"Noida, Uttar Pradesh, India\" phone=\"+91 964 247 5702\" email=\"info@qualstream.net\" css=\".vc_custom_1618990063986{padding-top: 46px !important;padding-right: 30px !important;padding-bottom: 66px !important;padding-left: 30px !important;background-image: url(http://qualstream.net/wp-content/uploads/2016/06/placeholder-1.gif?id=5588) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" facebook=\"#\" twitter=\"#\" linkedin=\"#\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8\"][vc_custom_heading text=\"Feedback form\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1622892390304{margin-bottom: 30px !important;padding-left: 25px !important;}\"][contact-form-7 id=\"508\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4\" css=\".vc_custom_1622891436053{padding-left: 10px !important;}\"][vc_custom_heading text=\"Your contact\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1540894042271{margin-bottom: 30px !important;}\"][stm_contact name=\"Reach Us At\" image=\"758\" email=\"info@qualstream.net\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" disable_element=\"yes\" css=\".vc_custom_1617691856423{margin-bottom: -60px !important;}\" el_class=\"third_bg_color\"][vc_column][vc_cta h2=\"Looking for a First-Class Business Plan Consultant?\" h2_font_container=\"font_size:20px|color:%23000000|line_height:24px\" h2_use_theme_fonts=\"yes\" shape=\"square\" style=\"flat\" add_button=\"right\" btn_title=\"get a quote\" btn_style=\"flat\" btn_color=\"theme_style_2\" btn_size=\"lg\" btn_align=\"right\" btn_i_align=\"right\" btn_i_icon_fontawesome=\"fa fa-chevron-right\" use_custom_fonts_h2=\"true\" btn_add_icon=\"true\" btn_link=\"url:%23||\" el_class=\"third_bg_color\" css=\".vc_custom_1545392879722{margin-bottom: 0px !important;}\"][/vc_cta][/vc_column][/vc_row]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '6484-revision-v1', '', '', '2021-06-13 12:03:49', '2021-06-13 12:03:49', '', 6484, 'https://qualstream.net/?p=7320', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_css`
--

CREATE TABLE `qs_revslider_css` (
  `id` int NOT NULL,
  `handle` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `hover` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `advanced` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `qs_revslider_css`
--

INSERT INTO `qs_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(1, '.tp-caption.medium_grey', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),
(2, '.tp-caption.small_text', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(3, '.tp-caption.medium_text', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(4, '.tp-caption.large_text', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(5, '.tp-caption.very_large_text', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(6, '.tp-caption.very_big_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),
(7, '.tp-caption.very_big_black', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}', '{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),
(8, '.tp-caption.modern_medium_fat', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(9, '.tp-caption.modern_medium_fat_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(10, '.tp-caption.modern_medium_light', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(11, '.tp-caption.modern_big_bluebg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),
(12, '.tp-caption.modern_big_redbg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),
(13, '.tp-caption.modern_small_text_dark', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}', '{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(14, '.tp-caption.boxshadow', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}', '[]'),
(15, '.tp-caption.black', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"#000\"}'),
(16, '.tp-caption.noshadow', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '[]'),
(17, '.tp-caption.thinheadline_dark', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(18, '.tp-caption.thintext_dark', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(19, '.tp-caption.largeblackbg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(20, '.tp-caption.largepinkbg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(21, '.tp-caption.largewhitebg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}', '{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(22, '.tp-caption.largegreenbg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(23, '.tp-caption.excerpt', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}', '{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),
(24, '.tp-caption.large_bold_grey', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(25, '.tp-caption.medium_thin_grey', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(26, '.tp-caption.small_thin_grey', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(27, '.tp-caption.lightgrey_divider', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}', '{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(28, '.tp-caption.large_bold_darkblue', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(29, '.tp-caption.medium_bg_darkblue', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(30, '.tp-caption.medium_bold_red', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(31, '.tp-caption.medium_light_red', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(32, '.tp-caption.medium_bg_red', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(33, '.tp-caption.medium_bold_orange', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(34, '.tp-caption.medium_bg_orange', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(35, '.tp-caption.grassfloor', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}', '{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(36, '.tp-caption.large_bold_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(37, '.tp-caption.medium_light_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(38, '.tp-caption.mediumlarge_light_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(39, '.tp-caption.mediumlarge_light_white_center', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(40, '.tp-caption.medium_bg_asbestos', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(41, '.tp-caption.medium_light_black', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(42, '.tp-caption.large_bold_black', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(43, '.tp-caption.mediumlarge_light_darkblue', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(44, '.tp-caption.small_light_white', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(45, '.tp-caption.roundedimage', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(46, '.tp-caption.large_bg_black', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":[],\"hover\":\"\"}', '{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(47, '.tp-caption.mediumwhitebg', '{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}', 'null', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),
(48, '.tp-caption.MarkerDisplay', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(49, '.tp-caption.Restaurant-Display', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(50, '.tp-caption.Restaurant-Cursive', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(51, '.tp-caption.Restaurant-ScrollDownText', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(52, '.tp-caption.Restaurant-Description', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(53, '.tp-caption.Restaurant-Price', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(54, '.tp-caption.Restaurant-Menuitem', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(55, '.tp-caption.Furniture-LogoText', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(56, '.tp-caption.Furniture-Plus', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}', '{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(57, '.tp-caption.Furniture-Title', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(58, '.tp-caption.Furniture-Subtitle', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(59, '.tp-caption.Gym-Display', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(60, '.tp-caption.Gym-Subline', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(61, '.tp-caption.Gym-SmallText', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(62, '.tp-caption.Fashion-SmallText', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(63, '.tp-caption.Fashion-BigDisplay', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(64, '.tp-caption.Fashion-TextBlock', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(65, '.tp-caption.Sports-Display', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(66, '.tp-caption.Sports-DisplayFat', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":[\"\"],\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(67, '.tp-caption.Sports-Subline', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(68, '.tp-caption.Instagram-Caption', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(69, '.tp-caption.News-Title', '', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\"}');
INSERT INTO `qs_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(70, '.tp-caption.News-Subtitle', '{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(71, '.tp-caption.Photography-Display', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(72, '.tp-caption.Photography-Subline', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(73, '.tp-caption.Photography-ImageHover', '{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(74, '.tp-caption.Photography-Menuitem', '{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(75, '.tp-caption.Photography-Textblock', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(76, '.tp-caption.Photography-Subline-2', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(77, '.tp-caption.Photography-ImageHover2', '{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(78, '.tp-caption.WebProduct-Title', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(79, '.tp-caption.WebProduct-SubTitle', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(80, '.tp-caption.WebProduct-Content', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(81, '.tp-caption.WebProduct-Menuitem', '{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(82, '.tp-caption.WebProduct-Title-Light', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(83, '.tp-caption.WebProduct-SubTitle-Light', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),
(84, '.tp-caption.WebProduct-Content-Light', '{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),
(85, '.tp-caption.FatRounded', '{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}', '{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(86, '.tp-caption.NotGeneric-Title', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"[object Object]\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(87, '.tp-caption.NotGeneric-SubTitle', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(88, '.tp-caption.NotGeneric-CallToAction', '{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}', '{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(89, '.tp-caption.NotGeneric-Icon', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}', '{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(90, '.tp-caption.NotGeneric-Menuitem', '{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(91, '.tp-caption.MarkerStyle', '{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(92, '.tp-caption.Gym-Menuitem', '{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(93, '.tp-caption.Newspaper-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(94, '.tp-caption.Newspaper-Subtitle', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(95, '.tp-caption.Newspaper-Title', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(96, '.tp-caption.Newspaper-Title-Centered', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(97, '.tp-caption.Hero-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(98, '.tp-caption.Video-Title', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(99, '.tp-caption.Video-SubTitle', '{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(100, '.tp-caption.NotGeneric-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(101, '.tp-caption.NotGeneric-BigButton', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(102, '.tp-caption.WebProduct-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(103, '.tp-caption.Restaurant-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
INSERT INTO `qs_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(104, '.tp-caption.Gym-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}', '{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(105, '.tp-caption.Gym-Button-Light', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(106, '.tp-caption.Sports-Button-Light', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(107, '.tp-caption.Sports-Button-Red', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}', '{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(108, '.tp-caption.Photography-Button', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}', '{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(109, '.tp-caption.Newspaper-Button-2', '{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}', '{\"idle\":\"\",\"hover\":\"\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_css_bkp`
--

CREATE TABLE `qs_revslider_css_bkp` (
  `id` int NOT NULL,
  `handle` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `hover` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `advanced` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `qs_revslider_css_bkp`
--

INSERT INTO `qs_revslider_css_bkp` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(1, '.tp-caption.medium_grey', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),
(2, '.tp-caption.small_text', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(3, '.tp-caption.medium_text', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(4, '.tp-caption.large_text', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(5, '.tp-caption.very_large_text', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),
(6, '.tp-caption.very_big_white', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),
(7, '.tp-caption.very_big_black', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),
(8, '.tp-caption.modern_medium_fat', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(9, '.tp-caption.modern_medium_fat_white', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(10, '.tp-caption.modern_medium_light', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(11, '.tp-caption.modern_big_bluebg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),
(12, '.tp-caption.modern_big_redbg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),
(13, '.tp-caption.modern_small_text_dark', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(14, '.tp-caption.boxshadow', NULL, NULL, NULL, '{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),
(15, '.tp-caption.black', NULL, NULL, NULL, '{\"color\":\"#000\",\"text-shadow\":\"none\"}'),
(16, '.tp-caption.noshadow', NULL, NULL, NULL, '{\"text-shadow\":\"none\"}'),
(17, '.tp-caption.thinheadline_dark', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(18, '.tp-caption.thintext_dark', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(19, '.tp-caption.largeblackbg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(20, '.tp-caption.largepinkbg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(21, '.tp-caption.largewhitebg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(22, '.tp-caption.largegreenbg', NULL, NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(23, '.tp-caption.excerpt', NULL, NULL, NULL, '{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),
(24, '.tp-caption.large_bold_grey', NULL, NULL, NULL, '{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(25, '.tp-caption.medium_thin_grey', NULL, NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(26, '.tp-caption.small_thin_grey', NULL, NULL, NULL, '{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(27, '.tp-caption.lightgrey_divider', NULL, NULL, NULL, '{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(28, '.tp-caption.large_bold_darkblue', NULL, NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(29, '.tp-caption.medium_bg_darkblue', NULL, NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(30, '.tp-caption.medium_bold_red', NULL, NULL, NULL, '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(31, '.tp-caption.medium_light_red', NULL, NULL, NULL, '{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(32, '.tp-caption.medium_bg_red', NULL, NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(33, '.tp-caption.medium_bold_orange', NULL, NULL, NULL, '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(34, '.tp-caption.medium_bg_orange', NULL, NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(35, '.tp-caption.grassfloor', NULL, NULL, NULL, '{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(36, '.tp-caption.large_bold_white', NULL, NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(37, '.tp-caption.medium_light_white', NULL, NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(38, '.tp-caption.mediumlarge_light_white', NULL, NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(39, '.tp-caption.mediumlarge_light_white_center', NULL, NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(40, '.tp-caption.medium_bg_asbestos', NULL, NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(41, '.tp-caption.medium_light_black', NULL, NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(42, '.tp-caption.large_bold_black', NULL, NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(43, '.tp-caption.mediumlarge_light_darkblue', NULL, NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(44, '.tp-caption.small_light_white', NULL, NULL, NULL, '{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(45, '.tp-caption.roundedimage', NULL, NULL, NULL, '{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(46, '.tp-caption.large_bg_black', NULL, NULL, NULL, '{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(47, '.tp-caption.mediumwhitebg', NULL, NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_layer_animations`
--

CREATE TABLE `qs_revslider_layer_animations` (
  `id` int NOT NULL,
  `handle` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `params` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_layer_animations_bkp`
--

CREATE TABLE `qs_revslider_layer_animations_bkp` (
  `id` int NOT NULL,
  `handle` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `params` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_navigations`
--

CREATE TABLE `qs_revslider_navigations` (
  `id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `handle` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `css` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `markup` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_navigations_bkp`
--

CREATE TABLE `qs_revslider_navigations_bkp` (
  `id` int NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `handle` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `css` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `markup` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_sliders`
--

CREATE TABLE `qs_revslider_sliders` (
  `id` int NOT NULL,
  `title` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `alias` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `type` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `qs_revslider_sliders`
--

INSERT INTO `qs_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(1, 'Highlight Carousel7', 'highlight-carousel7', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"highlight-carousel7\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1170,\"n\":991,\"t\":767,\"m\":480},\"height\":{\"d\":800,\"n\":720,\"t\":520,\"m\":480},\"editorCache\":{\"d\":800,\"n\":720,\"t\":520,\"m\":480},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":true,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"rgba(0, 0, 0, 0)\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffcc00\",\"type\":\"2\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":true,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"10\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,210,255,1)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":true,\"duration\":\"1000\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"observeWrap\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4010,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"480\",\"spanWrapper\":true,\"horizontal\":\"center\",\"vertical\":\"top\",\"amount\":\"3\",\"direction\":\"horizontal\",\"height\":\"30\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"30\",\"space\":\"1\",\"align\":\"slider\",\"padding\":\"0\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":3003,\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"right\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"100\",\"offsetY\":\"100\",\"align\":\"slider\",\"space\":\"17\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"10\",\"hideUnder\":true,\"hideUnderLimit\":\"991\"}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"50\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"highlight-carousel7\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(2, 'About Us Slider', 'about_us_slider', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"about_us_slider\\\"][\\/rev_slider]\",\"type\":\"carousel\",\"layouttype\":\"auto\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":825,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":407,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":407,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"991px\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":true,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":\"\",\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"40\",\"align\":\"slider\",\"space\":\"20\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":\"\",\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"debugMode\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"cid\":2,\"fid\":1,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}],\"fonts\":[{\"alias\":\"Headline Font\",\"v\":\"Roboto\"},{\"alias\":\"Content Font\",\"v\":\"Roboto\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"about_us_slider\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(3, 'Service Slider', 'service_slider', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"service_slider\\\"][\\/rev_slider]\",\"type\":\"carousel\",\"layouttype\":\"auto\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1110,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":407,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":407,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"991px\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":true,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":true,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":\"\",\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"40\",\"align\":\"slider\",\"space\":\"20\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":\"\",\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"debugMode\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"cid\":2,\"fid\":1,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}],\"fonts\":[{\"alias\":\"Headline Font\",\"v\":\"Roboto\"},{\"alias\":\"Content Font\",\"v\":\"Roboto\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"service_slider\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', '');

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_sliders_bkp`
--

CREATE TABLE `qs_revslider_sliders_bkp` (
  `id` int NOT NULL,
  `title` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `alias` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,
  `type` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_slides`
--

CREATE TABLE `qs_revslider_slides` (
  `id` int NOT NULL,
  `slider_id` int NOT NULL,
  `slide_order` int NOT NULL,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `layers` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `qs_revslider_slides`
--

INSERT INTO `qs_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(1, 1, 2, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"First\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/qualstream.net\\/wp-content\\/uploads\\/2019\\/09\\/slider-2-1.jpg\",\"imageId\":6919,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"slideoverhorizontal\"],\"slots\":[\"7\"],\"duration\":[\"1500\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"10\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}', '{\"1\":{\"text\":\"Modernized Legacy\\nSystems\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"672px\",\"e\":true},\"n\":{\"v\":\"672px\",\"e\":true},\"t\":{\"v\":\"400px\",\"e\":true},\"m\":{\"v\":\"364px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"243px\",\"e\":true},\"n\":{\"v\":\"243px\",\"e\":true},\"t\":{\"v\":\"133px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"originalWidth\":\"672px\",\"originalHeight\":\"243px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"464px\",\"e\":true},\"n\":{\"v\":\"344px\",\"e\":true},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"static\":{\"end\":\"2\"},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"News-Title\",\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\",\"e\":true},\"t\":{\"v\":\"42px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\",\"e\":true},\"t\":{\"v\":\"600\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"78px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"5\":{\"text\":\"Develop high-quality and secure applications that are reliable and cost-effective. <i class=\\\"vc_btn3-icon stm-amsterdam-arrow\\\" style=\\\"font-size: 10px; color:#eb900d;\\\"><\\/i>\",\"alias\":\"Subtitle\",\"uid\":5,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"414px\",\"e\":true},\"m\":{\"v\":\"414px\"}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"41px\"}},\"y\":{\"d\":{\"v\":\"645px\",\"e\":true},\"n\":{\"v\":\"525px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"363px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":520},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[34,0,0,0],\"e\":true},\"n\":{\"v\":[34,0,0,0],\"e\":true},\"t\":{\"v\":[14,0,0,0],\"e\":true},\"m\":{\"v\":[14,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"#eb900d\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"7\":{\"text\":\"\",\"alias\":\"Meet line\",\"uid\":7,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"60px\",\"originalHeight\":\"1px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"681px\",\"e\":true},\"n\":{\"v\":\"296px\",\"e\":true},\"t\":{\"v\":\"256px\",\"e\":true},\"m\":{\"v\":\"236px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"433px\",\"e\":true},\"n\":{\"v\":\"313px\",\"e\":true},\"t\":{\"v\":\"215px\",\"e\":true},\"m\":{\"v\":\"239px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1000,\"start\":9000,\"startRelative\":5400,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#eb900d\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"9\":{\"text\":\"Application Development and Maintanence\",\"alias\":\"Meet consulting\",\"uid\":9,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"424px\",\"e\":true},\"n\":{\"v\":\"304px\",\"e\":true},\"t\":{\"v\":\"204px\",\"e\":true},\"m\":{\"v\":\"229px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"7px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}'),
(2, 1, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Second\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/qualstream.net\\/wp-content\\/uploads\\/2019\\/09\\/slider-1.jpg\",\"imageId\":6917,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"slideoverhorizontal\"],\"slots\":[\"7\"],\"duration\":[\"1500\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"10\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}', '{\"1\":{\"text\":\"Bringing Great People and great organizations together \",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"960px\",\"e\":true},\"n\":{\"v\":\"672px\",\"e\":true},\"t\":{\"v\":\"400px\",\"e\":true},\"m\":{\"v\":\"364px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"312px\",\"e\":true},\"n\":{\"v\":\"243px\",\"e\":true},\"t\":{\"v\":\"133px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"originalWidth\":\"672px\",\"originalHeight\":\"243px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"464px\",\"e\":true},\"n\":{\"v\":\"344px\",\"e\":true},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"News-Title\",\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\",\"e\":true},\"t\":{\"v\":\"42px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\",\"e\":true},\"t\":{\"v\":\"600\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"78px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"5\":{\"text\":\"Qualstream is a market and technology advisory firm that works exclusively in Information Technology, Non - IT, \\n<br>healthcare & accounting. <i class=\\\"vc_btn3-icon stm-amsterdam-arrow\\\" style=\\\"font-size: 10px; color:#eb900d;\\\"><\\/i>\",\"alias\":\"Subtitle\",\"uid\":5,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"414px\",\"e\":true},\"m\":{\"v\":\"414px\"}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"41px\"}},\"y\":{\"d\":{\"v\":\"645px\",\"e\":true},\"n\":{\"v\":\"525px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"363px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":520},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[34,0,0,0],\"e\":true},\"n\":{\"v\":[34,0,0,0],\"e\":true},\"t\":{\"v\":[14,0,0,0],\"e\":true},\"m\":{\"v\":[14,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"#eb900d\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"7\":{\"text\":\"\",\"alias\":\"Talented line\",\"uid\":7,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"60px\",\"originalHeight\":\"1px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"417px\",\"e\":true},\"n\":{\"v\":\"386px\",\"e\":true},\"t\":{\"v\":\"306px\",\"e\":true},\"m\":{\"v\":\"296px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"433px\",\"e\":true},\"n\":{\"v\":\"313px\",\"e\":true},\"t\":{\"v\":\"215px\",\"e\":true},\"m\":{\"v\":\"239px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1000,\"start\":9000,\"startRelative\":5400,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#eb900d\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"9\":{\"text\":\"Staffing and Consulting\",\"alias\":\"Talented consultants \",\"uid\":9,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"424px\",\"e\":true},\"n\":{\"v\":\"304px\",\"e\":true},\"t\":{\"v\":\"204px\",\"e\":true},\"m\":{\"v\":\"229px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"7px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `qs_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(3, 2, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"color\":\"#fde428\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"},\"image\":\"\"},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"attributes\":{\"class\":\"third_bg_color\"},\"timeline\":{\"delay\":\"\",\"transition\":[\"slidehorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\"<div class=\\\"consulting-rev-title-3\\\">\\nWorkshops<br\\/>\\nthat awesome!\\n<\\/div>\",\"alias\":\"Consulting wpctrader...\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"80px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<div class=\\\"consulting-rev-text-2\\\">\\nWe are a company that offers design and build services for<br\\/> you from initial sketches to the final construction.\\n<\\/div>\",\"alias\":\"Fast order entry, ul...\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"194px\",\"e\":true},\"n\":{\"v\":\"194px\"},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"194px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"<a href=\\\"#\\\" class=\\\"button icon_right bordered theme_style_2\\\">get a quote <i class=\\\"fa fa-chevron-right\\\"><\\/i><\\/a>\",\"alias\":\"Discover ctrader \",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"272px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"272px\"},\"m\":{\"v\":\"272px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"\",\"alias\":\"Image 5\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/qualstream.net\\/wp-content\\/uploads\\/revslider\\/about_us_slider\\/macbook.png\",\"loaded\":true,\"imageId\":6890},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"383px\",\"e\":true},\"n\":{\"v\":\"383px\"},\"t\":{\"v\":\"383px\"},\"m\":{\"v\":\"383px\"}},\"height\":{\"d\":{\"v\":\"303px\",\"e\":true},\"n\":{\"v\":\"303px\"},\"t\":{\"v\":\"303px\"},\"m\":{\"v\":\"303px\"}},\"originalWidth\":383,\"originalHeight\":303,\"aspectRatio\":{\"d\":{\"v\":1.264026402640264112875456703477539122104644775390625},\"n\":{\"v\":1.264026402640264112875456703477539122104644775390625},\"t\":{\"v\":1.264026402640264112875456703477539122104644775390625},\"m\":{\"v\":1.264026402640264112875456703477539122104644775390625}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"74px\",\"e\":true},\"n\":{\"v\":\"74px\"},\"t\":{\"v\":\"74px\"},\"m\":{\"v\":\"74px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(4, 2, 2, '{\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"#fde428\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"},\"image\":\"\"},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"slidehorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"version\":\"6.2.0\",\"layout\":{\"bg\":{\"image\":\"\"}}}', '{\"6\":{\"text\":\"Image 5\",\"alias\":\"Image 5\",\"uid\":6,\"media\":{\"imageUrl\":\"http:\\/\\/qualstream.net\\/wp-content\\/uploads\\/revslider\\/about_us_slider\\/about.jpg\",\"imageId\":6891},\"size\":{\"width\":{\"d\":{\"v\":\"834px\",\"e\":true},\"n\":{\"v\":\"834px\"},\"t\":{\"v\":\"834px\"},\"m\":{\"v\":\"834px\"}},\"height\":{\"d\":{\"v\":\"421px\",\"e\":true},\"n\":{\"v\":\"421px\"},\"t\":{\"v\":\"421px\"},\"m\":{\"v\":\"421px\"}},\"originalWidth\":834,\"originalHeight\":421,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.9809976247030878226951244869269430637359619140625},\"n\":{\"v\":1.9809976247030878226951244869269430637359619140625},\"t\":{\"v\":1.9809976247030878226951244869269430637359619140625},\"m\":{\"v\":1.9809976247030878226951244869269430637359619140625}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"<div class=\\\"consulting-rev-title-3\\\">\\nMeet our<br\\/>\\nbrilliant minds!\\n<\\/div>\",\"alias\":\"Consulting WPcTrader...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"80px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(34, 34, 34, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"t\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"m\":{\"v\":\"rgba(34, 34, 34, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(34, 34, 34, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"t\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"m\":{\"v\":\"rgba(34, 34, 34, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<div class=\\\"consulting-rev-text-2\\\">\\nOur personnel have evaluated liability, causation and\\/or<br\\/> damages issues in hundreds of litigation and dispute matters.\\n<\\/div>\",\"alias\":\"Fast order entry, ul...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"194px\",\"e\":true},\"n\":{\"v\":\"194px\"},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"194px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(34, 34, 34, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"t\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"m\":{\"v\":\"rgba(34, 34, 34, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(34, 34, 34, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"t\":{\"v\":\"rgba(34, 34, 34, 1)\"},\"m\":{\"v\":\"rgba(34, 34, 34, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"<a href=\\\"#\\\" class=\\\"button icon_right bordered theme_style_2\\\">learn more <i class=\\\"fa fa-chevron-right\\\"><\\/i><\\/a>\",\"alias\":\"Discover cTrader \",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"67px\",\"e\":true},\"n\":{\"v\":\"67px\"},\"t\":{\"v\":\"67px\"},\"m\":{\"v\":\"67px\"}},\"y\":{\"d\":{\"v\":\"272px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"272px\"},\"m\":{\"v\":\"272px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":8900}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":8900,\"startRelative\":8100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(5, 3, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"color\":\"#fde428\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"},\"image\":\"\"},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"attributes\":{\"class\":\"third_bg_color\"},\"timeline\":{\"delay\":\"\",\"transition\":[\"slidehorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"\",\"alias\":\"Image 1\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/qualstream.net\\/wp-content\\/uploads\\/revslider\\/service_slider\\/services_slider.png\",\"loaded\":true,\"imageId\":6892},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"523px\",\"e\":true},\"n\":{\"v\":\"523px\"},\"t\":{\"v\":\"523px\"},\"m\":{\"v\":\"523px\"}},\"height\":{\"d\":{\"v\":\"264px\",\"e\":true},\"n\":{\"v\":\"264px\"},\"t\":{\"v\":\"264px\"},\"m\":{\"v\":\"264px\"}},\"originalWidth\":523,\"originalHeight\":264,\"aspectRatio\":{\"d\":{\"v\":1.981060606060605966405319122713990509510040283203125},\"n\":{\"v\":1.981060606060605966405319122713990509510040283203125},\"t\":{\"v\":1.981060606060605966405319122713990509510040283203125},\"m\":{\"v\":1.981060606060605966405319122713990509510040283203125}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"36px\"},\"m\":{\"v\":\"36px\"}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"<div class=\\\"consulting-rev-title-2\\\">\\nConsulting WP<br\\/>\\ncTrader platform\\n<\\/div>\",\"alias\":\"<div class=\\\"consulting-rev-title-2\\\">consulting wp<br\\/>ctrader platform<\\/div>\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"76px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"76px\"},\"m\":{\"v\":\"76px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<div class=\\\"consulting-rev-text-2\\\">\\nFast order entry, ultra-fast execution speeds, direct order entry<br\\/> via charts and Level II pricing are just some of the reasons why <br\\/>many traders today choose cTrader as their go-to platform.\\n<\\/div>\",\"alias\":\"<div class=\\\"consulting-rev-text-2\\\">fast order entry, ultra-fast execution speeds, direct order entry<br\\/> via charts and level ii pricing are just some of the reasons why <br\\/>many traders today choose ctrader as their go-to platform.<\\/div>\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"183px\",\"e\":true},\"n\":{\"v\":\"183px\"},\"t\":{\"v\":\"183px\"},\"m\":{\"v\":\"183px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"<a href=\\\"#\\\" class=\\\"button icon_right bordered theme_style_2\\\">discover cTrader <i class=\\\"fa fa-chevron-right\\\"><\\/i><\\/a>\",\"alias\":\"<a href=\\\"#\\\" class=\\\"button icon_right bordered theme_style_2\\\">discover ctrader <i class=\\\"fa fa-chevron-right\\\"><\\/i><\\/a>\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"283px\",\"e\":true},\"n\":{\"v\":\"283px\"},\"t\":{\"v\":\"283px\"},\"m\":{\"v\":\"283px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `qs_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(6, 3, 2, '{\"title\":\"Slide\",\"bg\":{\"color\":\"#fde428\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"},\"image\":\"\"},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"slidehorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"version\":\"6.2.0\"}', '{\"5\":{\"text\":\"Image 5\",\"alias\":\"Image 5\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/qualstream.net\\/wp-content\\/uploads\\/revslider\\/service_slider\\/service.jpg\",\"imageId\":6893},\"size\":{\"width\":{\"d\":{\"v\":\"1110px\",\"e\":true},\"n\":{\"v\":\"1110px\"},\"t\":{\"v\":\"1110px\"},\"m\":{\"v\":\"1110px\"}},\"height\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"407px\"},\"t\":{\"v\":\"407px\"},\"m\":{\"v\":\"407px\"}},\"originalWidth\":1110,\"originalHeight\":407,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":2.727272727272727070868540977244265377521514892578125},\"n\":{\"v\":2.727272727272727070868540977244265377521514892578125},\"t\":{\"v\":2.727272727272727070868540977244265377521514892578125},\"m\":{\"v\":2.727272727272727070868540977244265377521514892578125}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"<div class=\\\"consulting-rev-title-2\\\">\\nInvestors will Love Your Business Plan\\n<\\/div>\",\"alias\":\"Consulting WPcTrader...\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"94px\"},\"t\":{\"v\":\"94px\"},\"m\":{\"v\":\"94px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"<div class=\\\"consulting-rev-text-2\\\">\\nFast order entry, ultra-fast execution speeds, direct order entry via <br\\/>\\ncharts and Level II pricing are just some of the reasons why many<br\\/>\\ntraders today choose cTrader as their go-to platform.\\n<\\/div>\",\"alias\":\"Fast order entry, ul...\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"161px\",\"e\":true},\"n\":{\"v\":\"161px\"},\"t\":{\"v\":\"161px\"},\"m\":{\"v\":\"161px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"<a href=\\\"#\\\" class=\\\"button icon_right bordered theme_style_2\\\">learn more <i class=\\\"fa fa-chevron-right\\\"><\\/i><\\/a>\",\"alias\":\"Discover cTrader \",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"65px\"},\"m\":{\"v\":\"65px\"}},\"y\":{\"d\":{\"v\":\"261px\",\"e\":true},\"n\":{\"v\":\"261px\"},\"t\":{\"v\":\"261px\"},\"m\":{\"v\":\"261px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(7, 1, 3, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Second\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/qualstream.net\\/wp-content\\/uploads\\/2019\\/09\\/slider-1.jpg\",\"imageId\":6917,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"timeline\":{\"transition\":[\"slideoverhorizontal\"],\"slots\":[\"7\"],\"duration\":[\"1500\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"10\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}', '{\"1\":{\"text\":\"Bringing Great People and great organizations together \",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"960px\",\"e\":true},\"n\":{\"v\":\"672px\",\"e\":true},\"t\":{\"v\":\"400px\",\"e\":true},\"m\":{\"v\":\"364px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"312px\",\"e\":true},\"n\":{\"v\":\"243px\",\"e\":true},\"t\":{\"v\":\"133px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"originalWidth\":\"672px\",\"originalHeight\":\"243px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"464px\",\"e\":true},\"n\":{\"v\":\"344px\",\"e\":true},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"News-Title\",\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\",\"e\":true},\"t\":{\"v\":\"42px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\",\"e\":true},\"t\":{\"v\":\"600\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"v\":\"-1px\",\"e\":true},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"78px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"54px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"5\":{\"text\":\"Qualstream is a market and technology advisory firm that works exclusively in Information Technology, Non - IT,  <br>healthcare & accounting. <i class=\\\"vc_btn3-icon stm-amsterdam-arrow\\\" style=\\\"font-size: 10px; color:#eb900d;\\\"><\\/i>\",\"alias\":\"Subtitle\",\"uid\":5,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1132.547px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"414px\",\"e\":true},\"m\":{\"v\":\"414px\"}},\"height\":{\"d\":{\"v\":\"78px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"41px\"}},\"y\":{\"d\":{\"v\":\"645px\",\"e\":true},\"n\":{\"v\":\"525px\",\"e\":true},\"t\":{\"v\":\"363px\",\"e\":true},\"m\":{\"v\":\"363px\"}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1500,\"start\":520,\"startRelative\":520,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6980,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":520},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[34,0,0,0],\"e\":true},\"n\":{\"v\":[34,0,0,0],\"e\":true},\"t\":{\"v\":[14,0,0,0],\"e\":true},\"m\":{\"v\":[14,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"#eb900d\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"7\":{\"text\":\"\",\"alias\":\"Talented line\",\"uid\":7,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"60px\",\"originalHeight\":\"1px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"417px\",\"e\":true},\"n\":{\"v\":\"386px\",\"e\":true},\"t\":{\"v\":\"306px\",\"e\":true},\"m\":{\"v\":\"296px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"433px\",\"e\":true},\"n\":{\"v\":\"313px\",\"e\":true},\"t\":{\"v\":\"215px\",\"e\":true},\"m\":{\"v\":\"239px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1000,\"start\":9000,\"startRelative\":5400,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#eb900d\",\"borderColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"9\":{\"text\":\"Staffing and Consulting\",\"alias\":\"Talented consultants \",\"uid\":9,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"424px\",\"e\":true},\"n\":{\"v\":\"304px\",\"e\":true},\"t\":{\"v\":\"204px\",\"e\":true},\"m\":{\"v\":\"229px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":1000,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"7px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_slides_bkp`
--

CREATE TABLE `qs_revslider_slides_bkp` (
  `id` int NOT NULL,
  `slider_id` int NOT NULL,
  `slide_order` int NOT NULL,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `layers` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_static_slides`
--

CREATE TABLE `qs_revslider_static_slides` (
  `id` int NOT NULL,
  `slider_id` int NOT NULL,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `layers` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `qs_revslider_static_slides`
--

INSERT INTO `qs_revslider_static_slides` (`id`, `slider_id`, `params`, `layers`, `settings`) VALUES
(1, 2, '{\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}', '[]', '{\"version\":\"6.2.0\"}'),
(2, 3, '{\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}', '[]', '{\"version\":\"6.2.0\"}'),
(3, 1, '[]', '', '{\"temp\":true}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_revslider_static_slides_bkp`
--

CREATE TABLE `qs_revslider_static_slides_bkp` (
  `id` int NOT NULL,
  `slider_id` int NOT NULL,
  `params` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `layers` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `settings` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_sbi_instagram_feeds_posts`
--

CREATE TABLE `qs_sbi_instagram_feeds_posts` (
  `record_id` int UNSIGNED NOT NULL,
  `id` int UNSIGNED NOT NULL,
  `instagram_id` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `feed_id` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `hashtag` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_sbi_instagram_feed_locator`
--

CREATE TABLE `qs_sbi_instagram_feed_locator` (
  `id` bigint UNSIGNED NOT NULL,
  `feed_id` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '',
  `post_id` bigint UNSIGNED NOT NULL,
  `html_location` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `last_update` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_sbi_instagram_posts`
--

CREATE TABLE `qs_sbi_instagram_posts` (
  `id` int UNSIGNED NOT NULL,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `media_id` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sizes` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT '0.00',
  `images_done` tinyint(1) NOT NULL DEFAULT '0',
  `last_requested` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_termmeta`
--

CREATE TABLE `qs_termmeta` (
  `meta_id` bigint UNSIGNED NOT NULL,
  `term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_termmeta`
--

INSERT INTO `qs_termmeta` (`meta_id`, `term_id`, `meta_key`, `meta_value`) VALUES
(1, 66, 'product_count_product_tag', '1'),
(2, 67, 'product_count_product_tag', '1'),
(3, 68, 'order', '0'),
(4, 68, 'order', '0'),
(5, 68, 'product_count_product_cat', '4'),
(6, 70, 'order', '0'),
(7, 70, 'order', '0'),
(8, 70, 'product_count_product_cat', '3'),
(9, 71, 'product_count_product_tag', '2'),
(10, 77, 'order', '0'),
(11, 77, 'order', '0'),
(12, 77, 'product_count_product_cat', '2'),
(13, 81, 'product_count_product_tag', '1'),
(14, 84, 'order', '0'),
(15, 84, 'order', '0'),
(16, 84, 'product_count_product_cat', '2'),
(17, 85, 'product_count_product_tag', '1'),
(18, 90, 'product_count_product_tag', '1'),
(19, 91, 'order', '0'),
(20, 91, 'order', '0'),
(21, 91, 'product_count_product_cat', '1'),
(22, 94, 'order', '0'),
(23, 94, 'order', '0'),
(24, 94, 'product_count_product_cat', '1'),
(25, 98, 'order', '0'),
(26, 98, 'order', '0'),
(27, 98, 'product_count_product_cat', '1'),
(28, 100, 'product_count_product_tag', '1'),
(29, 101, 'product_count_product_tag', '1'),
(30, 104, 'product_count_product_tag', '1'),
(31, 105, 'order', '0'),
(32, 105, 'order', '0'),
(33, 105, 'product_count_product_cat', '1');

-- --------------------------------------------------------

--
-- Table structure for table `qs_terms`
--

CREATE TABLE `qs_terms` (
  `term_id` bigint UNSIGNED NOT NULL,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_terms`
--

INSERT INTO `qs_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'simple', 'simple', 0),
(3, 'grouped', 'grouped', 0),
(4, 'variable', 'variable', 0),
(5, 'external', 'external', 0),
(6, 'exclude-from-search', 'exclude-from-search', 0),
(7, 'exclude-from-catalog', 'exclude-from-catalog', 0),
(8, 'featured', 'featured', 0),
(9, 'outofstock', 'outofstock', 0),
(10, 'rated-1', 'rated-1', 0),
(11, 'rated-2', 'rated-2', 0),
(12, 'rated-3', 'rated-3', 0),
(13, 'rated-4', 'rated-4', 0),
(14, 'rated-5', 'rated-5', 0),
(15, 'Uncategorized', 'uncategorized', 0),
(16, 'Business plans', 'business-plans', 0),
(17, 'Business plans', 'business-plans-fr', 0),
(18, 'Business plans', 'business-plans-de', 0),
(19, 'Competitive research', 'competitive-research-analysis', 0),
(20, 'Economics', 'economics', 0),
(21, 'Finance &amp; accounting', 'finance-accounting', 0),
(22, 'Finance &amp; accounting', 'finance-accounting-fr', 0),
(23, 'Finance &amp; accounting', 'finance-accounting-de', 0),
(24, 'Franchising', 'franchising', 0),
(25, 'Funding trends', 'funding-trends', 0),
(26, 'Funding trends', 'funding-trends-fr', 0),
(27, 'Funding trends', 'funding-trends-de', 0),
(28, 'Innovation', 'innovation', 0),
(29, 'International', 'international', 0),
(30, '401K', '401k', 0),
(31, '401K', '401k-fr', 0),
(32, '401K', '401k-de', 0),
(33, 'advisors', 'advisors', 0),
(34, 'benchmarks', 'benchmarks', 0),
(35, 'consulting', 'consulting', 0),
(36, 'consulting', 'consulting-fr', 0),
(37, 'consulting', 'consulting-de', 0),
(38, 'finance', 'finance', 0),
(39, 'finance', 'finance-fr', 0),
(40, 'finance', 'finance-de', 0),
(41, 'ideas', 'ideas', 0),
(42, 'inventors', 'inventors', 0),
(43, 'market', 'market', 0),
(44, 'millenials', 'millenials', 0),
(45, 'online services', 'online-services', 0),
(46, 'online services', 'online-services-fr', 0),
(47, 'online services', 'online-services-de', 0),
(48, 'performance', 'performance', 0),
(49, 'personal finance', 'personal-finance', 0),
(50, 'planning', 'planning', 0),
(51, 'portfolios', 'portfolios', 0),
(52, 'portfolios', 'portfolios-fr', 0),
(53, 'portfolios', 'portfolios-de', 0),
(54, 'themeforest', 'themeforest', 0),
(55, 'themeforest', 'themeforest-fr', 0),
(56, 'themeforest', 'themeforest-de', 0),
(57, 'tips', 'tips', 0),
(58, 'wealth', 'wealth', 0),
(59, '401K', '401k', 0),
(60, 'Advanced Analytics', 'advanced-analytics', 0),
(61, 'advisors', 'advisors', 0),
(62, 'Advisory', 'advisory', 0),
(63, 'Audit', 'audit', 0),
(64, 'Background', 'background', 0),
(65, 'Base', 'base', 0),
(66, 'benchmarks', 'benchmarks', 0),
(67, 'Book', 'book', 0),
(68, 'Books', 'books', 0),
(69, 'Business Services', 'business-services', 0),
(70, 'Clothing', 'clothing', 0),
(71, 'consulting', 'consulting', 0),
(72, 'Consulting', 'consulting', 0),
(73, 'Consumer Products', 'consumer-products', 0),
(74, 'Energy &amp; Environment', 'energy-environment', 0),
(75, 'Financial Services', 'financial-services', 0),
(76, 'Financial Services', 'financial-services', 0),
(77, 'Hoodies', 'hoodies', 0),
(78, 'Human Capital', 'human-capital', 0),
(79, 'ideas', 'ideas', 0),
(80, 'inventors', 'inventors', 0),
(81, 'market', 'market', 0),
(82, 'Mergers &amp; Acquisitions', 'mergers-acquisitions', 0),
(83, 'millenials', 'millenials', 0),
(84, 'Music', 'music', 0),
(85, 'online services', 'online-services', 0),
(86, 'Operations', 'operations', 0),
(87, 'performance', 'performance', 0),
(88, 'personal finance', 'personal-finance', 0),
(89, 'planning', 'planning', 0),
(90, 'portfolios', 'portfolios', 0),
(91, 'Posters', 'posters', 0),
(92, 'Regulatory', 'regulatory', 0),
(93, 'Secondary', 'secondary', 0),
(94, 'Singles', 'singles', 0),
(95, 'Strategy', 'strategy', 0),
(96, 'Surface Transport &amp; Logistics', 'surface-transport-logistics', 0),
(97, 'Surface Transport &amp; Logistics', 'surface-transport-logistics', 0),
(98, 'T-shirts', 't-shirts', 0),
(99, 'Tax', 'tax', 0),
(100, 'Themeforest', 'themeforest', 0),
(101, 'tips', 'tips', 0),
(102, 'Travel &amp; Aviation', 'travel-aviation', 0),
(103, 'wealth', 'wealth', 0),
(104, 'WordPress', 'wordpress', 0),
(105, 'Albums', 'albums', 0),
(106, 'Extra Links', 'extra-links', 0),
(107, 'Main Menu', 'main-menu', 0),
(108, 'Sidebar Menu 1', 'sidebar-menu-1', 0),
(109, 'Sidebar Menu 2', 'sidebar-menu-2', 0),
(110, 'Sidebar Menu 3', 'sidebar-menu-3', 0),
(111, 'Custom Main Menu', 'custom-main-menu', 0);

-- --------------------------------------------------------

--
-- Table structure for table `qs_term_relationships`
--

CREATE TABLE `qs_term_relationships` (
  `object_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_term_relationships`
--

INSERT INTO `qs_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(56, 2, 0),
(56, 70, 0),
(56, 77, 0),
(131, 20, 0),
(131, 33, 0),
(131, 38, 0),
(131, 41, 0),
(131, 57, 0),
(133, 28, 0),
(133, 35, 0),
(133, 43, 0),
(133, 50, 0),
(135, 19, 0),
(135, 30, 0),
(135, 45, 0),
(135, 51, 0),
(334, 64, 0),
(335, 64, 0),
(337, 64, 0),
(563, 62, 0),
(563, 63, 0),
(563, 78, 0),
(563, 86, 0),
(563, 95, 0),
(563, 99, 0),
(565, 62, 0),
(565, 63, 0),
(565, 78, 0),
(565, 86, 0),
(565, 92, 0),
(565, 99, 0),
(566, 62, 0),
(566, 63, 0),
(566, 72, 0),
(566, 78, 0),
(566, 82, 0),
(566, 95, 0),
(566, 99, 0),
(567, 62, 0),
(567, 72, 0),
(567, 78, 0),
(567, 82, 0),
(567, 92, 0),
(567, 95, 0),
(567, 99, 0),
(568, 62, 0),
(568, 63, 0),
(568, 72, 0),
(568, 82, 0),
(568, 86, 0),
(568, 92, 0),
(568, 95, 0),
(568, 99, 0),
(569, 62, 0),
(569, 63, 0),
(569, 78, 0),
(569, 82, 0),
(569, 92, 0),
(569, 95, 0),
(570, 62, 0),
(570, 63, 0),
(570, 72, 0),
(570, 82, 0),
(570, 86, 0),
(570, 99, 0),
(571, 62, 0),
(571, 63, 0),
(571, 72, 0),
(571, 78, 0),
(571, 82, 0),
(571, 86, 0),
(571, 92, 0),
(571, 95, 0),
(571, 99, 0),
(600, 69, 0),
(606, 102, 0),
(607, 73, 0),
(608, 69, 0),
(609, 96, 0),
(610, 69, 0),
(722, 74, 0),
(723, 96, 0),
(725, 75, 0),
(738, 16, 0),
(738, 35, 0),
(738, 45, 0),
(738, 51, 0),
(738, 54, 0),
(889, 2, 0),
(889, 70, 0),
(889, 98, 0),
(892, 2, 0),
(892, 70, 0),
(892, 71, 0),
(892, 77, 0),
(892, 81, 0),
(895, 2, 0),
(895, 68, 0),
(895, 85, 0),
(895, 90, 0),
(900, 2, 0),
(900, 68, 0),
(901, 2, 0),
(901, 67, 0),
(901, 71, 0),
(901, 91, 0),
(901, 100, 0),
(901, 104, 0),
(902, 2, 0),
(902, 84, 0),
(902, 105, 0),
(903, 2, 0),
(903, 68, 0),
(904, 2, 0),
(904, 68, 0),
(905, 2, 0),
(905, 66, 0),
(905, 84, 0),
(905, 94, 0),
(905, 101, 0),
(1076, 24, 0),
(1076, 34, 0),
(1076, 44, 0),
(1519, 97, 0),
(1520, 76, 0),
(1521, 97, 0),
(1522, 60, 0),
(1523, 76, 0),
(1524, 97, 0),
(1525, 76, 0),
(1526, 60, 0),
(2194, 25, 0),
(2196, 28, 0),
(2199, 17, 0),
(2202, 19, 0),
(2902, 69, 0),
(2903, 74, 0),
(2904, 69, 0),
(6475, 107, 0),
(6476, 107, 0),
(6477, 107, 0),
(6478, 107, 0),
(6479, 107, 0),
(6480, 107, 0),
(6481, 107, 0),
(6482, 107, 0),
(6787, 107, 0),
(6788, 106, 0),
(6789, 106, 0),
(6790, 106, 0),
(6791, 106, 0),
(6792, 106, 0),
(6793, 107, 0),
(6794, 107, 0),
(6795, 107, 0),
(6796, 107, 0),
(6797, 108, 0),
(6798, 107, 0),
(6799, 108, 0),
(6800, 108, 0),
(6801, 107, 0),
(6802, 107, 0),
(6803, 108, 0),
(6804, 108, 0),
(6805, 107, 0),
(6806, 108, 0),
(6807, 108, 0),
(6808, 107, 0),
(6809, 107, 0),
(6810, 107, 0),
(6811, 109, 0),
(6812, 109, 0),
(6813, 109, 0),
(6814, 109, 0),
(6815, 109, 0),
(6816, 109, 0),
(6817, 109, 0),
(6818, 109, 0),
(6819, 107, 0),
(6820, 107, 0),
(6821, 107, 0),
(6822, 107, 0),
(6823, 107, 0),
(6824, 110, 0),
(6825, 110, 0),
(6826, 110, 0),
(6827, 107, 0),
(6828, 107, 0),
(6829, 107, 0),
(6830, 107, 0),
(6831, 107, 0),
(6832, 107, 0),
(6833, 107, 0),
(6834, 107, 0),
(6835, 106, 0),
(6836, 106, 0),
(6837, 106, 0),
(6838, 106, 0),
(6839, 107, 0),
(6840, 107, 0),
(6841, 107, 0),
(6842, 107, 0),
(6843, 107, 0),
(6844, 107, 0),
(6845, 107, 0),
(6846, 107, 0),
(6847, 107, 0),
(6848, 107, 0),
(6849, 107, 0),
(6850, 107, 0),
(6851, 107, 0),
(6852, 107, 0),
(6853, 107, 0),
(6854, 107, 0),
(6855, 107, 0),
(6856, 107, 0),
(6857, 107, 0),
(6858, 107, 0),
(6859, 107, 0),
(6860, 107, 0),
(6861, 107, 0),
(6862, 106, 0),
(6863, 107, 0),
(6864, 107, 0),
(6865, 107, 0),
(6866, 107, 0),
(6867, 107, 0),
(6868, 107, 0),
(6869, 107, 0),
(6870, 107, 0),
(6871, 107, 0),
(6872, 107, 0),
(6873, 107, 0),
(6874, 107, 0),
(6875, 107, 0),
(6876, 107, 0),
(6877, 107, 0),
(6878, 107, 0),
(6879, 107, 0),
(6880, 107, 0),
(6881, 107, 0),
(6882, 107, 0),
(6883, 107, 0),
(6884, 107, 0),
(6885, 107, 0),
(6886, 107, 0),
(6887, 107, 0),
(6895, 111, 0),
(6896, 111, 0),
(6897, 111, 0),
(6899, 111, 0),
(6916, 111, 0),
(6982, 111, 0),
(7068, 111, 0),
(7069, 111, 0),
(7070, 111, 0),
(7071, 111, 0),
(7079, 111, 0),
(7089, 111, 0),
(7162, 111, 0),
(7163, 111, 0),
(7164, 111, 0),
(7165, 111, 0),
(7166, 111, 0),
(7167, 111, 0),
(7168, 111, 0),
(7169, 111, 0),
(7170, 111, 0),
(7288, 111, 0);

-- --------------------------------------------------------

--
-- Table structure for table `qs_term_taxonomy`
--

CREATE TABLE `qs_term_taxonomy` (
  `term_taxonomy_id` bigint UNSIGNED NOT NULL,
  `term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_term_taxonomy`
--

INSERT INTO `qs_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'product_type', '', 0, 10),
(3, 3, 'product_type', '', 0, 0),
(4, 4, 'product_type', '', 0, 0),
(5, 5, 'product_type', '', 0, 0),
(6, 6, 'product_visibility', '', 0, 0),
(7, 7, 'product_visibility', '', 0, 0),
(8, 8, 'product_visibility', '', 0, 0),
(9, 9, 'product_visibility', '', 0, 0),
(10, 10, 'product_visibility', '', 0, 0),
(11, 11, 'product_visibility', '', 0, 0),
(12, 12, 'product_visibility', '', 0, 0),
(13, 13, 'product_visibility', '', 0, 0),
(14, 14, 'product_visibility', '', 0, 0),
(15, 15, 'product_cat', '', 0, 0),
(16, 16, 'category', '', 0, 1),
(17, 17, 'category', '', 0, 1),
(18, 18, 'category', '', 0, 0),
(19, 19, 'category', '', 0, 2),
(20, 20, 'category', '', 0, 1),
(21, 21, 'category', '', 0, 0),
(22, 22, 'category', '', 0, 0),
(23, 23, 'category', '', 0, 0),
(24, 24, 'category', '', 0, 1),
(25, 25, 'category', '', 0, 1),
(26, 26, 'category', '', 0, 0),
(27, 27, 'category', '', 0, 0),
(28, 28, 'category', '', 0, 2),
(29, 29, 'category', '', 0, 0),
(30, 30, 'post_tag', '', 0, 1),
(31, 31, 'post_tag', '', 0, 0),
(32, 32, 'post_tag', '', 0, 0),
(33, 33, 'post_tag', '', 0, 1),
(34, 34, 'post_tag', '', 0, 1),
(35, 35, 'post_tag', '', 0, 2),
(36, 36, 'post_tag', '', 0, 0),
(37, 37, 'post_tag', '', 0, 0),
(38, 38, 'post_tag', '', 0, 1),
(39, 39, 'post_tag', '', 0, 0),
(40, 40, 'post_tag', '', 0, 0),
(41, 41, 'post_tag', '', 0, 1),
(42, 42, 'post_tag', '', 0, 0),
(43, 43, 'post_tag', '', 0, 1),
(44, 44, 'post_tag', '', 0, 1),
(45, 45, 'post_tag', '', 0, 2),
(46, 46, 'post_tag', '', 0, 0),
(47, 47, 'post_tag', '', 0, 0),
(48, 48, 'post_tag', '', 0, 0),
(49, 49, 'post_tag', '', 0, 0),
(50, 50, 'post_tag', '', 0, 1),
(51, 51, 'post_tag', '', 0, 2),
(52, 52, 'post_tag', '', 0, 0),
(53, 53, 'post_tag', '', 0, 0),
(54, 54, 'post_tag', '', 0, 1),
(55, 55, 'post_tag', '', 0, 0),
(56, 56, 'post_tag', '', 0, 0),
(57, 57, 'post_tag', '', 0, 1),
(58, 58, 'post_tag', '', 0, 0),
(59, 59, 'product_tag', '', 0, 0),
(60, 60, 'stm_portfolio_category', '', 0, 2),
(61, 61, 'product_tag', '', 0, 0),
(62, 62, 'stm_service_category', '', 0, 8),
(63, 63, 'stm_service_category', '', 0, 7),
(64, 64, 'stm_testimonials_category', '', 0, 3),
(65, 65, 'stm_testimonials_category', '', 0, 0),
(66, 66, 'product_tag', '', 0, 1),
(67, 67, 'product_tag', '', 0, 1),
(68, 68, 'product_cat', '', 0, 4),
(69, 69, 'stm_works_category', '', 0, 5),
(70, 70, 'product_cat', '', 0, 3),
(71, 71, 'product_tag', '', 0, 2),
(72, 72, 'stm_service_category', '', 0, 5),
(73, 73, 'stm_works_category', '', 0, 1),
(74, 74, 'stm_works_category', '', 0, 2),
(75, 75, 'stm_works_category', '', 0, 1),
(76, 76, 'stm_portfolio_category', '', 0, 3),
(77, 77, 'product_cat', '', 70, 2),
(78, 78, 'stm_service_category', '', 0, 6),
(79, 79, 'product_tag', '', 0, 0),
(80, 80, 'product_tag', '', 0, 0),
(81, 81, 'product_tag', '', 0, 1),
(82, 82, 'stm_service_category', '', 0, 6),
(83, 83, 'product_tag', '', 0, 0),
(84, 84, 'product_cat', '', 0, 2),
(85, 85, 'product_tag', '', 0, 1),
(86, 86, 'stm_service_category', '', 0, 5),
(87, 87, 'product_tag', '', 0, 0),
(88, 88, 'product_tag', '', 0, 0),
(89, 89, 'product_tag', '', 0, 0),
(90, 90, 'product_tag', '', 0, 1),
(91, 91, 'product_cat', '', 0, 1),
(92, 92, 'stm_service_category', '', 0, 5),
(93, 93, 'stm_testimonials_category', '', 0, 0),
(94, 94, 'product_cat', '', 84, 1),
(95, 95, 'stm_service_category', '', 0, 6),
(96, 96, 'stm_works_category', '', 0, 2),
(97, 97, 'stm_portfolio_category', '', 0, 3),
(98, 98, 'product_cat', '', 70, 1),
(99, 99, 'stm_service_category', '', 0, 7),
(100, 100, 'product_tag', '', 0, 1),
(101, 101, 'product_tag', '', 0, 1),
(102, 102, 'stm_works_category', '', 0, 1),
(103, 103, 'product_tag', '', 0, 0),
(104, 104, 'product_tag', '', 0, 1),
(105, 105, 'product_cat', '', 84, 1),
(106, 106, 'nav_menu', '', 0, 10),
(107, 107, 'nav_menu', '', 0, 81),
(108, 108, 'nav_menu', '', 0, 7),
(109, 109, 'nav_menu', '', 0, 8),
(110, 110, 'nav_menu', '', 0, 3),
(111, 111, 'nav_menu', '', 0, 22);

-- --------------------------------------------------------

--
-- Table structure for table `qs_usermeta`
--

CREATE TABLE `qs_usermeta` (
  `umeta_id` bigint UNSIGNED NOT NULL,
  `user_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_usermeta`
--

INSERT INTO `qs_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'qualstream@_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, 'qs_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'qs_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice,text_widget_custom_html,vc_pointers_backend_editor'),
(15, 1, 'show_welcome_panel', '0'),
(17, 1, 'qs_dashboard_quick_press_last_post_id', '7321'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:12:\"49.205.231.0\";}'),
(19, 1, '_woocommerce_tracks_anon_id', 'woo:ZIEf/Mgu7rJkeasFsVsewarU'),
(20, 1, 'wc_last_active', '1651795200'),
(21, 1, 'nav_menu_recently_edited', '111'),
(22, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(23, 1, 'metaboxhidden_nav-menus', 'a:22:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:23:\"add-post-type-stm_event\";i:2;s:26:\"add-post-type-event_member\";i:3;s:25:\"add-post-type-stm_service\";i:4;s:25:\"add-post-type-stm_careers\";i:5;s:23:\"add-post-type-stm_staff\";i:6;s:23:\"add-post-type-stm_works\";i:7;s:30:\"add-post-type-stm_testimonials\";i:8;s:28:\"add-post-type-stm_vc_sidebar\";i:9;s:27:\"add-post-type-stm_portfolio\";i:10;s:21:\"add-post-type-product\";i:11;s:22:\"add-post-type-stm-zoom\";i:12;s:30:\"add-post-type-stm-zoom-webinar\";i:13;s:12:\"add-post_tag\";i:14;s:29:\"add-stm_testimonials_category\";i:15;s:22:\"add-stm_event_category\";i:16;s:24:\"add-stm_service_category\";i:17;s:22:\"add-stm_works_category\";i:18;s:22:\"add-stm_staff_category\";i:19;s:26:\"add-stm_portfolio_category\";i:20;s:15:\"add-product_cat\";i:21;s:15:\"add-product_tag\";}'),
(24, 1, 'qs_user-settings', 'libraryContent=browse&editor=tinymce&edit_element_vcUIPanelWidth=673&edit_element_vcUIPanelLeft=520px&edit_element_vcUIPanelTop=74px&posts_list_mode=list&hidetb=1'),
(25, 1, 'qs_user-settings-time', '1618914458'),
(28, 1, 'dismissed_no_secure_connection_notice', '1'),
(30, 1, '_order_count', '0'),
(32, 1, 'edit_page_per_page', '200'),
(39, 1, 'sbi_ignore_new_user_sale_notice', 'always'),
(40, 1, 'session_tokens', 'a:1:{s:64:\"c14ebccac38a7e198fe59ae55cfd2a0d60477f47b35073d0343c76189fddbd63\";a:4:{s:10:\"expiration\";i:1653034117;s:2:\"ip\";s:13:\"49.205.231.36\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36\";s:5:\"login\";i:1651824517;}}'),
(42, 1, 'closedpostboxes_dashboard', 'a:8:{i:0;s:20:\"e-dashboard-overview\";i:1;s:21:\"dashboard_site_health\";i:2;s:19:\"dashboard_right_now\";i:3;s:18:\"dashboard_activity\";i:4;s:36:\"woocommerce_dashboard_recent_reviews\";i:5;s:28:\"woocommerce_dashboard_status\";i:6;s:21:\"dashboard_quick_press\";i:7;s:17:\"dashboard_primary\";}'),
(43, 1, 'metaboxhidden_dashboard', 'a:0:{}'),
(45, 1, '_woocommerce_persistent_cart_1', 'a:1:{s:4:\"cart\";a:0:{}}');

-- --------------------------------------------------------

--
-- Table structure for table `qs_users`
--

CREATE TABLE `qs_users` (
  `ID` bigint UNSIGNED NOT NULL,
  `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_users`
--

INSERT INTO `qs_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'qualstream@_admin', '$P$BJwWWVZs1.fRoXvgfthbU7S6WRUWld1', 'qualstream_admin', 'design2.livasys@gmail.com', 'http://qualstream.net', '2021-04-05 11:41:38', '', 0, 'qualstream@_admin');

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_admin_notes`
--

CREATE TABLE `qs_wc_admin_notes` (
  `note_id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `locale` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  `layout` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `image` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `icon` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_wc_admin_notes`
--

INSERT INTO `qs_wc_admin_notes` (`note_id`, `name`, `type`, `locale`, `title`, `content`, `content_data`, `status`, `source`, `date_created`, `date_reminder`, `is_snoozable`, `layout`, `image`, `is_deleted`, `icon`) VALUES
(1, 'wc-admin-wc-helper-connection', 'info', 'en_US', 'Connect to WooCommerce.com', 'Connect to get important product notifications and updates.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-05 12:41:31', NULL, 0, 'plain', '', 0, 'info'),
(2, 'wc-admin-onboarding-email-marketing', 'info', 'en_US', 'Sign up for tips, product updates, and inspiration', 'We\'re here for you - get tips, product updates and inspiration straight to your email box', '{}', 'unactioned', 'woocommerce-admin', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(3, 'wc-admin-marketing-intro', 'info', 'en_US', 'Connect with your audience', 'Grow your customer base and increase your sales with marketing tools built for WooCommerce.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(4, 'paypal_ppcp_gtm_2021', 'marketing', 'en_US', 'Offer more options with the new PayPal', 'Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(5, 'facebook_pixel_api_2021', 'marketing', 'en_US', 'Improve the performance of your Facebook ads', 'Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(6, 'facebook_ec_2021', 'marketing', 'en_US', 'Sync your product catalog with Facebook to help boost sales', 'A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(7, 'ecomm-need-help-setting-up-your-store', 'info', 'en_US', 'Need help setting up your Store?', 'Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(8, 'woocommerce-services', 'info', 'en_US', 'WooCommerce Shipping & Tax', 'WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(9, 'ecomm-unique-shopping-experience', 'info', 'en_US', 'For a shopping experience as unique as your customers', 'Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(10, 'wc-admin-getting-started-in-ecommerce', 'info', 'en_US', 'Getting Started in eCommerce - webinar', 'We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(11, 'your-first-product', 'info', 'en_US', 'Your first product', 'That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(12, 'wc-square-apple-pay-boost-sales', 'marketing', 'en_US', 'Boost sales with Apple Pay', 'Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(13, 'wc-square-apple-pay-grow-your-business', 'marketing', 'en_US', 'Grow your business with Square and Apple Pay ', 'Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(14, 'wcpay-apple-pay-is-now-available', 'marketing', 'en_US', 'Apple Pay is now available with WooCommerce Payments!', 'Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(15, 'wcpay-apple-pay-boost-sales', 'marketing', 'en_US', 'Boost sales with Apple Pay', 'Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(16, 'wcpay-apple-pay-grow-your-business', 'marketing', 'en_US', 'Grow your business with WooCommerce Payments and Apple Pay', 'Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(17, 'wc-admin-optimizing-the-checkout-flow', 'info', 'en_US', 'Optimizing the checkout flow', 'It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(18, 'wc-admin-first-five-things-to-customize', 'info', 'en_US', 'The first 5 things to customize in your store', 'Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.', '{}', 'pending', 'woocommerce.com', '2021-04-05 12:41:32', NULL, 0, 'plain', '', 0, 'info'),
(19, 'wc-admin-learn-more-about-variable-products', 'info', 'en_US', 'Learn more about variable products', 'Variable products are a powerful product type that lets you offer a set of variations on a product, with control over prices, stock, image and more for each variation. They can be used for a product like a shirt, where you can offer a large, medium and small and in different colors.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-05 12:56:11', NULL, 0, 'plain', '', 0, 'info'),
(20, 'wc-admin-choosing-a-theme', 'marketing', 'en_US', 'Choosing a theme?', 'Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-06 12:56:22', NULL, 0, 'plain', '', 0, 'info'),
(21, 'wc-admin-insight-first-product-and-payment', 'survey', 'en_US', 'Insight', 'More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?', '{}', 'unactioned', 'woocommerce-admin', '2021-04-06 12:56:22', NULL, 0, 'plain', '', 0, 'info'),
(22, 'wc-admin-customizing-product-catalog', 'info', 'en_US', 'How to customize your product catalog', 'You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-06 12:56:22', NULL, 0, 'plain', '', 0, 'info'),
(23, 'wc-admin-mobile-app', 'info', 'en_US', 'Install Woo mobile app', 'Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-07 13:02:53', NULL, 0, 'plain', '', 0, 'info'),
(24, 'wc-admin-onboarding-payments-reminder', 'info', 'en_US', 'Start accepting payments on your store!', 'Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-10 13:34:44', NULL, 0, 'plain', '', 0, 'info'),
(25, 'wc-admin-usage-tracking-opt-in', 'info', 'en_US', 'Help WooCommerce improve with usage tracking', 'Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://qualstream.net/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-12 15:59:02', NULL, 0, 'plain', '', 0, 'info'),
(26, 'wc-admin-store-notice-giving-feedback-2', 'info', 'en_US', 'You\'re invited to share your experience', 'Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.', '{}', 'unactioned', 'woocommerce-admin', '2021-04-13 15:05:44', NULL, 0, 'plain', '', 0, 'info'),
(27, 'wc-admin-insight-first-sale', 'survey', 'en_US', 'Did you know?', 'A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?', '{}', 'unactioned', 'woocommerce-admin', '2021-04-13 15:05:44', NULL, 0, 'plain', '', 0, 'info'),
(28, 'wc-payments-qualitative-feedback', 'info', 'en_US', 'WooCommerce Payments setup - let us know what you think', 'Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.', '{}', 'pending', 'woocommerce.com', '2021-04-16 14:24:49', NULL, 0, 'plain', '', 0, 'info'),
(29, 'share-your-feedback-on-paypal', 'info', 'en_US', 'Share your feedback on PayPal', 'Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.', '{}', 'pending', 'woocommerce.com', '2021-05-14 15:16:27', NULL, 0, 'plain', '', 0, 'info'),
(30, 'wcpay_instant_deposits_gtm_2021', 'marketing', 'en_US', 'Get paid within minutes – Instant Deposits for WooCommerce Payments', 'Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.', '{}', 'pending', 'woocommerce.com', '2021-05-14 15:16:27', NULL, 0, 'plain', '', 0, 'info'),
(31, 'wc-subscriptions-security-update-3-0-15', 'info', 'en_US', 'WooCommerce Subscriptions security update!', 'We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.', '{}', 'pending', 'woocommerce.com', '2021-05-31 15:33:45', NULL, 0, 'plain', '', 0, 'info'),
(32, 'google_listings_and_ads_install', 'marketing', 'en_US', 'Drive traffic and sales with Google', 'Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.', '{}', 'pending', 'woocommerce.com', '2021-06-07 13:44:21', NULL, 0, 'plain', '', 0, 'info'),
(33, 'woocommerce-core-update-5-4-0', 'info', 'en_US', 'Update to WooCommerce 5.4.1 now', 'WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.', '{}', 'pending', 'woocommerce.com', '2021-06-10 13:16:14', NULL, 0, 'plain', '', 0, 'info'),
(34, 'wcpay-promo-2020-11', 'marketing', 'en_US', 'wcpay-promo-2020-11', 'wcpay-promo-2020-11', '{}', 'pending', 'woocommerce.com', '2021-06-12 12:46:42', NULL, 0, 'plain', '', 0, 'info'),
(35, 'wcpay-promo-2020-12', 'marketing', 'en_US', 'wcpay-promo-2020-12', 'wcpay-promo-2020-12', '{}', 'pending', 'woocommerce.com', '2021-06-12 12:46:42', NULL, 0, 'plain', '', 0, 'info'),
(36, 'wcpay-promo-2021-6-incentive-1', 'marketing', 'en_US', 'Simplify the payments process for you and your customers with WooCommerce Payments', 'With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				', '{}', 'pending', 'woocommerce.com', '2021-06-12 12:46:42', NULL, 0, 'plain', '', 0, 'info'),
(37, 'wcpay-promo-2021-6-incentive-2', 'marketing', 'en_US', 'Simplify the payments process for you and your customers with WooCommerce Payments', 'With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				', '{}', 'pending', 'woocommerce.com', '2021-06-12 12:46:42', NULL, 0, 'plain', '', 0, 'info'),
(38, 'wc-admin-first-downloadable-product', 'info', 'en_US', 'Learn more about digital/downloadable products', 'Congrats on adding your first digital product! You can learn more about how to handle digital or downloadable products in our documentation.', '{}', 'unactioned', 'woocommerce-admin', '2021-06-13 12:42:11', NULL, 0, 'plain', '', 0, 'info'),
(39, 'ppxo-pps-upgrade-paypal-payments-1', 'info', 'en_US', 'Get the latest PayPal extension for WooCommerce', 'Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.', '{}', 'pending', 'woocommerce.com', '2021-06-22 13:53:29', NULL, 0, 'plain', '', 0, 'info'),
(40, 'ppxo-pps-upgrade-paypal-payments-2', 'info', 'en_US', 'Upgrade your PayPal experience!', 'Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.', '{}', 'pending', 'woocommerce.com', '2021-06-22 13:53:29', NULL, 0, 'plain', '', 0, 'info'),
(41, 'eu_vat_changes_2021', 'marketing', 'en_US', 'Get your business ready for the new EU tax regulations', 'On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.', '{}', 'unactioned', 'woocommerce.com', '2021-06-24 14:18:10', NULL, 0, 'plain', '', 0, 'info'),
(42, 'wc-admin-real-time-order-alerts', 'info', 'en_US', 'Get real-time order alerts anywhere', 'Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.', '{}', 'unactioned', 'woocommerce-admin', '2021-07-04 13:09:28', NULL, 0, 'plain', '', 0, 'info'),
(43, 'wayflyer_q3_2021', 'marketing', 'en_US', 'Grow your revenue with Wayflyer financing and analytics', 'Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.', '{}', 'pending', 'woocommerce.com', '2021-07-15 14:07:46', NULL, 0, 'plain', '', 0, 'info'),
(44, 'woocommerce-core-sqli-july-2021-need-to-update', 'update', 'en_US', 'Action required: Critical vulnerabilities in WooCommerce', 'In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.', '{}', 'pending', 'woocommerce.com', '2021-07-16 12:53:56', NULL, 0, 'plain', '', 0, 'info'),
(45, 'woocommerce-blocks-sqli-july-2021-need-to-update', 'update', 'en_US', 'Action required: Critical vulnerabilities in WooCommerce Blocks', 'In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.', '{}', 'pending', 'woocommerce.com', '2021-07-16 12:53:56', NULL, 0, 'plain', '', 0, 'info'),
(46, 'woocommerce-core-sqli-july-2021-store-patched', 'update', 'en_US', 'Solved: Critical vulnerabilities patched in WooCommerce', 'In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.', '{}', 'pending', 'woocommerce.com', '2021-07-16 12:53:56', NULL, 0, 'plain', '', 0, 'info'),
(47, 'woocommerce-blocks-sqli-july-2021-store-patched', 'update', 'en_US', 'Solved: Critical vulnerabilities patched in WooCommerce Blocks', 'In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.', '{}', 'pending', 'woocommerce.com', '2021-07-16 12:53:56', NULL, 0, 'plain', '', 0, 'info'),
(48, 'mercadopago_q3_2021_EN', 'marketing', 'en_US', 'Get paid with Mercado Pago Checkout', 'Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.', '{}', 'pending', 'woocommerce.com', '2021-08-31 13:19:42', NULL, 0, 'plain', '', 0, 'info'),
(49, 'wc-admin-manage-orders-on-the-go', 'info', 'en_US', 'Manage your orders on the go', 'Look for orders, customer info, and process refunds in one click with the Woo app.', '{}', 'unactioned', 'woocommerce-admin', '2021-10-02 13:04:11', NULL, 0, 'plain', '', 0, 'info'),
(50, 'bbpos-chipper-launch', 'marketing', 'en_US', 'Ready to grow your business beyond online?', 'Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.', '{}', 'pending', 'woocommerce.com', '2021-10-15 12:52:59', NULL, 0, 'plain', '', 0, 'info'),
(51, 'habit-moment-survey', 'marketing', 'en_US', 'We’re all ears! Share your experience so far with WooCommerce', 'We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.', '{}', 'pending', 'woocommerce.com', '2021-11-05 13:34:20', NULL, 0, 'plain', '', 0, 'info'),
(52, 'new_in_app_marketplace_2021_1', 'info', 'en_US', 'Grow your business with extensions', 'Check out our NEW Extensions tab to see our favorite extensions for growing your business, and discover the most popular extensions in the WooCommerce Marketplace.', '{}', 'pending', 'woocommerce.com', '2021-11-08 13:44:44', NULL, 0, 'plain', '', 0, 'info'),
(53, 'new_in_app_marketplace_2021_2', 'info', 'en_US', 'Customize your store with extensions', 'Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.', '{}', 'pending', 'woocommerce.com', '2021-11-08 13:44:44', NULL, 0, 'plain', '', 0, 'info'),
(54, 'stripe_applepay_holiday2021', 'marketing', 'en_US', 'Boost sales this holiday season with Apple Pay!', 'Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.', '{}', 'pending', 'woocommerce.com', '2021-11-11 15:24:52', NULL, 0, 'plain', '', 0, 'info'),
(55, 'square_applepay_holiday2021', 'marketing', 'en_US', 'Boost sales this holiday season with Apple Pay!', 'Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.', '{}', 'pending', 'woocommerce.com', '2021-11-11 15:24:52', NULL, 0, 'plain', '', 0, 'info'),
(56, 'wcpay_applepay_holiday2021', 'marketing', 'en_US', 'Boost sales this holiday season with Apple Pay!', 'Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.', '{}', 'pending', 'woocommerce.com', '2021-11-11 15:24:52', NULL, 0, 'plain', '', 0, 'info'),
(57, 'wayflyer_bnpl_q4_2021', 'marketing', 'en_US', 'Grow your business with funding through Wayflyer', 'Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.', '{}', 'pending', 'woocommerce.com', '2021-11-12 13:20:17', NULL, 0, 'plain', '', 0, 'info'),
(58, 'wc_shipping_mobile_app_usps_q4_2021', 'marketing', 'en_US', 'Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App', 'Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!', '{}', 'pending', 'woocommerce.com', '2021-11-12 13:20:17', NULL, 0, 'plain', '', 0, 'info'),
(59, 'wc_shipping_mobile_app_q4_2021', 'marketing', 'en_US', 'Print and manage your shipping labels with the WooCommerce Mobile App', 'Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!', '{}', 'pending', 'woocommerce.com', '2021-11-12 13:20:17', NULL, 0, 'plain', '', 0, 'info'),
(60, 'new_in_app_marketplace_2021', 'info', 'en_US', 'Customize your store with extensions', 'Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.', '{}', 'pending', 'woocommerce.com', '2021-11-23 12:45:18', NULL, 0, 'plain', '', 0, 'info'),
(61, 'wc-admin-performance-on-mobile', 'info', 'en_US', 'Track your store performance on mobile', 'Monitor your sales and high performing products with the Woo app.', '{}', 'unactioned', 'woocommerce-admin', '2021-12-31 12:54:00', NULL, 0, 'plain', '', 0, 'info'),
(62, 'ecomm-wc-navigation-survey', 'info', 'en_US', 'We’d like your feedback on the WooCommerce navigation', 'We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.', '{}', 'pending', 'woocommerce.com', '2022-01-06 12:59:03', NULL, 0, 'plain', '', 0, 'info'),
(63, 'wc_simple_payments_m2_reader_launch_q1_2022', 'marketing', 'en_US', 'Take quick and easy in-person payments', 'WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.', '{}', 'pending', 'woocommerce.com', '2022-02-04 12:57:15', NULL, 0, 'plain', '', 0, 'info'),
(64, 'wcpay_applepay_q1_2022', 'marketing', 'en_US', 'Increase conversions with Apple Pay – just like Diane does', 'See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.', '{}', 'pending', 'woocommerce.com', '2022-02-07 13:15:37', NULL, 0, 'plain', '', 0, 'info'),
(65, 'stripe_applepay_q1_2022', 'marketing', 'en_US', 'Increase conversions with Apple Pay – just like Thomas does', 'Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings &gt; Payments &gt; Stripe.', '{}', 'pending', 'woocommerce.com', '2022-02-07 13:15:37', NULL, 0, 'plain', '', 0, 'info'),
(66, 'square_applepay_q1_2022', 'marketing', 'en_US', 'Increase conversions with a faster checkout experience', 'By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings &gt; Payments &gt; Square.', '{}', 'pending', 'woocommerce.com', '2022-02-07 13:15:37', NULL, 0, 'plain', '', 0, 'info'),
(67, 'lead_gen_existing_customers_1', 'marketing', 'en_US', 'Talk to a consultant', 'As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.', '{}', 'pending', 'woocommerce.com', '2022-02-11 12:44:38', NULL, 0, 'plain', '', 0, 'info'),
(68, 'woocommerce-core-paypal-march-2022-updated', 'update', 'en_US', 'Security auto-update of WooCommerce', '<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.', '{}', 'unactioned', 'woocommerce.com', '2022-03-11 12:58:26', NULL, 0, 'plain', '', 0, 'info'),
(69, 'woocommerce-core-paypal-march-2022-updated-nopp', 'update', 'en_US', 'Security auto-update of WooCommerce', '<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).', '{}', 'pending', 'woocommerce.com', '2022-03-11 12:58:26', NULL, 0, 'plain', '', 0, 'info'),
(70, 'pinterest_03_2022_update', 'marketing', 'en_US', 'Your Pinterest for WooCommerce plugin is out of date!', 'Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.', '{}', 'pending', 'woocommerce.com', '2022-03-23 12:56:51', NULL, 0, 'plain', '', 0, 'info'),
(71, 'wc-admin-edit-products-on-the-move', 'info', 'en_US', 'Edit products on the move', 'Edit and create new products from your mobile devices with the Woo app', '{}', 'unactioned', 'woocommerce-admin', '2022-04-05 13:49:58', NULL, 0, 'plain', '', 0, 'info'),
(72, 'pinterest_gtm_q2_2021', 'marketing', 'en_US', 'Get your products in front of a large, engaged audience', 'Did you know that shoppers on Pinterest spend twice as much as people on other social platforms? With the new, official Pinterest for WooCommerce, you can turn your product catalog into shoppable Pins and showcase them to 400+ million monthly users looking to buy.', '{}', 'unactioned', 'woocommerce.com', '2022-04-24 12:46:41', NULL, 0, 'plain', '', 0, 'info'),
(73, 'setup_task_initiative_survey_q2_2022', 'survey', 'en_US', 'We want to know what matters most to you', 'Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.', '{}', 'pending', 'woocommerce.com', '2022-04-26 13:26:19', NULL, 0, 'plain', '', 0, 'info'),
(74, 'woocommerce_payments_subscriptions_nopayments_q2_2022', 'marketing', 'en_US', 'Sell subscriptions online – without a paid extension', 'Say hello to WooCommerce Payments – now with built-in subscriptions functionality. Get free access to the features you need to start earning recurring revenue online. Pay as you go, with no setup costs or monthly fees.', '{}', 'pending', 'woocommerce.com', '2022-04-27 13:45:23', NULL, 0, 'plain', '', 0, 'info'),
(75, 'woocommerce_payments_subscriptions_yespayments_q2_2022', 'marketing', 'en_US', 'Sell subscriptions online – no extra extension required', 'It\'s here! WooCommerce Payments now features built-in subscriptions functionality. No need to install an extra, paid extension – we\'ve made it simpler than ever to start earning recurring revenue. Ready to grow your business?', '{}', 'pending', 'woocommerce.com', '2022-04-27 13:45:23', NULL, 0, 'plain', '', 0, 'info'),
(76, 'wc-update-db-reminder', 'update', 'en_US', 'WooCommerce database update required', 'WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.', '{}', 'unactioned', 'woocommerce-core', '2022-05-06 08:09:03', NULL, 0, 'plain', '', 0, 'info'),
(77, 'setup_task_second_survey_q2_2022', 'survey', 'en_US', 'We want to know what matters most to you', 'Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.', '{}', 'pending', 'woocommerce.com', '2022-05-10 12:42:53', NULL, 0, 'plain', '', 0, 'info'),
(78, 'store_setup_survey_survey_q2_2022', 'survey', 'en_US', 'How is your store setup going?', 'Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.', '{}', 'pending', 'woocommerce.com', '2022-05-10 12:42:53', NULL, 0, 'plain', '', 0, 'info'),
(79, 'wc-admin-EU-consumer-protection', 'marketing', 'en_US', 'Important changes to EU consumer protection laws', 'New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.', '{}', 'unactioned', 'woocommerce.com', '2022-05-14 13:09:02', NULL, 0, 'plain', '', 0, 'info'),
(80, 'affirm_q2_2022', 'marketing', 'en_US', 'Boost your business with flexible payments', 'Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!', '{}', 'pending', 'woocommerce.com', '2022-05-15 12:43:56', NULL, 0, 'plain', '', 0, 'info'),
(81, 'googlelistings_multicountrygtm_q22022', 'marketing', 'en_US', 'Expand your audience with Multi-Country Advertising', 'It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.', '{}', 'unactioned', 'woocommerce.com', '2022-05-16 13:03:10', NULL, 0, 'plain', '', 0, 'info'),
(82, 'wc_ipp_order_creation_GTM_launch_q2_2022', 'marketing', 'en_US', 'Grow your business on the go with WooCommerce In-Person Payments', 'Quickly create new orders, manage transactions, and take secure payments no matter where your business takes you. With automatic inventory sync, WooCommerce In-Person Payments is the only fully integrated solution for taking your WooCommerce store offline.', '{}', 'pending', 'woocommerce.com', '2022-05-26 12:53:53', NULL, 0, 'plain', '', 0, 'info'),
(83, 'wc-admin-wisepad3', 'marketing', 'en_US', 'Take your business on the go in Canada with WooCommerce In-Person Payments', 'Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.', '{}', 'pending', 'woocommerce.com', '2022-06-15 13:16:38', NULL, 0, 'plain', '', 0, 'info'),
(84, 'TikTok q2_2022', 'marketing', 'en_US', 'Give your store a stage on the world’s fastest-growing advertising channel', 'With TikTok for WooCommerce, you can sync your catalog, create videos, and track performance in front of TikTok’s one billion global users. Try the Smart Video Generator to make ads using your existing product images – no camera needed. Get $200 in ad credit from TikTok after a $20 spend (terms &amp; conditions apply).', '{}', 'unactioned', 'woocommerce.com', '2022-06-22 13:14:18', NULL, 0, 'plain', '', 0, 'info'),
(85, 'tiktok-webinar-promo-july2022', 'marketing', 'en_US', 'Free webinar: TikTok for WooCommerce', 'Join WooCommerce and TikTok live on July 14 to learn about ad types, trends, and the best ways to connect with an audience of one billion active users on the world’s fastest-growing social platform. Participants have a chance to score a free month of Vimeo Pro, and two winners will get a $5,000 ad credit and more.', '{}', 'pending', 'woocommerce.com', '2022-07-09 13:02:24', NULL, 0, 'plain', '', 0, 'info'),
(86, 'mercado_pago_q3_2022', 'marketing', 'en_US', 'Get paid with Mercado Pago Checkout', 'Give your customers a checkout they can trust with Latin America\'s leading payment processor. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.', '{}', 'pending', 'woocommerce.com', '2022-08-08 13:04:51', NULL, 0, 'plain', '', 0, 'info'),
(87, 'klarna_q3_2022', 'marketing', 'en_US', 'Meet Klarna – your ultimate growth partner', 'Increase conversions by offering secure, flexible payment solutions – including buy now, pay later – all through a one-click checkout experience. Plus, you’ll tap into a whole new market of the world’s most engaged shoppers.', '{}', 'unactioned', 'woocommerce.com', '2022-08-08 13:04:51', NULL, 0, 'plain', '', 0, 'info'),
(88, 'woocommerce-payments-august-2022-need-to-update', 'update', 'en_US', 'Action required: Please update WooCommerce Payments', 'An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.', '{}', 'pending', 'woocommerce.com', '2022-08-09 14:21:16', NULL, 0, 'plain', '', 0, 'info'),
(89, 'woocommerce-payments-august-2022-store-patched', 'update', 'en_US', 'WooCommerce Payments has been automatically updated', 'You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.', '{}', 'pending', 'woocommerce.com', '2022-08-09 14:21:16', NULL, 0, 'plain', '', 0, 'info'),
(90, 'mobile_app_order_management_q3_2022', 'marketing', 'en_US', 'Take order management on the go', 'The WooCommerce Mobile App continues to get better with added order management functionality! Add or remove products, edit fees, or change the shipping options in any existing order – all from within the app.', '{}', 'unactioned', 'woocommerce.com', '2022-08-17 13:15:56', NULL, 0, 'plain', '', 0, 'info'),
(91, 'product_creation_usability_test_3_months', 'survey', 'en_US', 'Have a say in the future of WooCommerce', 'Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.', '{}', 'pending', 'woocommerce.com', '2022-08-25 12:44:13', NULL, 0, 'plain', '', 0, 'info'),
(92, 'product_creation_usability_test_6_months', 'survey', 'en_US', 'Try the new product edit form prototype', 'Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.', '{}', 'pending', 'woocommerce.com', '2022-08-30 13:15:06', NULL, 0, 'plain', '', 0, 'info'),
(93, 'product_creation_usability_test_12_months', 'survey', 'en_US', 'Try the new product edit form prototype', 'Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.', '{}', 'pending', 'woocommerce.com', '2022-09-07 12:44:13', NULL, 0, 'plain', '', 0, 'info'),
(94, 'custom_deposit_schedules_inbox', 'marketing', 'en_US', 'Customize your deposit schedule', 'Receive your funds according to your own business needs with custom deposit schedules from WooCommerce Payments. You’ll have the flexibility to deposit funds into your bank account daily, weekly, monthly, or even on-demand – you’ve done the work, now get paid on your terms.', '{}', 'unactioned', 'woocommerce.com', '2022-09-15 13:09:11', NULL, 0, 'plain', '', 0, 'info'),
(95, 'googlelistings_signals2022_hasGLA', 'marketing', 'en_US', 'Show off your products with Ads on Google', 'You’re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If you’re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.', '{}', 'pending', 'woocommerce.com', '2022-09-23 13:20:48', NULL, 0, 'plain', '', 0, 'info'),
(96, 'googlelistings_signals2022_noGLA', 'marketing', 'en_US', 'Show off your products with Ads on Google', 'You’re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If you’re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.', '{}', 'pending', 'woocommerce.com', '2022-09-23 13:20:48', NULL, 0, 'plain', '', 0, 'info'),
(97, 'pre-black-friday-sale-2022-announcement', 'marketing', 'en_US', 'Surprise! We’re offering 40% off everything at WooCommerce.com', 'Just in time to get your store Black Friday ready. Sale ends 7 October, 2pm UTC.', '{}', 'unactioned', 'woocommerce.com', '2022-10-04 13:52:22', NULL, 0, 'plain', '', 0, 'info'),
(98, 'shipping_category_q4_2022', 'marketing', 'en_US', 'Save time on shipping', 'Is your store all set to ship? Save valuable time (and money!) by automating your fulfillment process for the busiest shopping season. Explore our range of trusted shipping partners to get started.', '{}', 'unactioned', 'woocommerce.com', '2022-10-13 13:09:31', NULL, 0, 'plain', '', 0, 'info'),
(99, 'facebook_q4-2022_hasFB', 'marketing', 'en_US', 'Drive more demand this holiday season with Facebook for WooCommerce', 'Deliver a personalized and seamless shopping experience this holiday season with Facebook for WooCommerce. With more ad formats than ever, you can create engaging ads that meet customers across Facebook, Instagram, Messenger, and WhatsApp throughout the busy shopping season.', '{}', 'pending', 'woocommerce.com', '2022-10-21 13:00:54', NULL, 0, 'plain', '', 0, 'info'),
(100, 'facebook_q4-2022_noFB', 'marketing', 'en_US', 'Meet your customers where they are with Facebook for WooCommerce', 'Don’t wait for your customers to come to you – meet them where they’re browsing! Use the Facebook for WooCommerce extension to promote your products on Facebook, Instagram, Messenger, and WhatsApp. Create seamless shopping experiences – straight from your WooCommerce dashboard.', '{}', 'unactioned', 'woocommerce.com', '2022-10-22 13:09:50', NULL, 0, 'plain', '', 0, 'info'),
(101, 'tiktok-targeted-q4-2022', 'marketing', 'en_US', 'Get $200 in ad credit from TikTok after you spend $20 on your first campaign', 'Reach one billion shoppers with TikTok for WooCommerce this holiday season! Sync your product catalog, capture insights, and create ad campaigns right from your dashboard. Connect your store today to unlock this limited time offer! <a href=\"https://ads.tiktok.com/help/article?aid=10011326\">Terms &amp; conditions apply</a>.', '{}', 'pending', 'woocommerce.com', '2022-10-25 12:44:35', NULL, 0, 'plain', '', 0, 'info'),
(102, 'paypal_paylater_g3_q4_22', 'marketing', 'en_US', 'Turn browsers into buyers with Pay Later', 'Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 &amp; Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales – at no extra cost to you.', '{}', 'unactioned', 'woocommerce.com', '2022-11-02 13:05:03', NULL, 0, 'plain', '', 0, 'info'),
(103, 'woocommerce_admin_deprecation_q4_2022', 'info', 'en_US', 'WooCommerce Admin is part of WooCommerce!', 'To make sure your store continues to run smoothly, check that WooCommerce is up-to-date – at least version 6.5 – and then disable the WooCommerce Admin plugin.', '{}', 'pending', 'woocommerce.com', '2022-11-04 13:48:14', NULL, 0, 'plain', '', 0, 'info'),
(104, 'paypal_paylater_g2_q4_22', 'marketing', 'en_US', 'Upgrade to PayPal Payments to offer Pay Later at checkout', 'PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThere’s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.', '{}', 'pending', 'woocommerce.com', '2022-11-04 13:48:14', NULL, 0, 'plain', '', 0, 'info'),
(105, 'google_listings_ads_custom_attribute_mapping_q4_2022', 'marketing', 'en_US', 'Our latest improvement to the Google Listings & Ads extension: Attribute Mapping', 'You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.', '{}', 'pending', 'woocommerce.com', '2022-12-01 13:04:33', NULL, 0, 'plain', '', 0, 'info'),
(106, 'wc-admin-manualauthcapture', 'marketing', 'en_US', 'Miss fewer manual payments in WooCommerce Payments', 'Using WooCommerce Payments to manually authorize and capture payments? We’ve introduced a simplified and more efficient process, so you can miss fewer payments and continue to grow your revenue.', '{}', 'pending', 'woocommerce.com', '2022-12-01 13:04:33', NULL, 0, 'plain', '', 0, 'info'),
(107, 'apple_pay_square_q422', 'marketing', 'en_US', 'Grow your business with Apple Pay', 'Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Enable Apple Pay with Square by selecting  Settings &gt; Payments &gt; Square.', '{}', 'pending', 'woocommerce.com', '2022-12-08 12:55:59', NULL, 0, 'plain', '', 0, 'info'),
(108, 'apple_pay_wcpay_q422', 'marketing', 'en_US', 'Grow your business with Apple Pay', 'Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Confirm Apple Pay is enabled by selecting Payments &gt; Settings and making sure Enable express checkouts is checked.', '{}', 'pending', 'woocommerce.com', '2022-12-08 12:55:59', NULL, 0, 'plain', '', 0, 'info');
INSERT INTO `qs_wc_admin_notes` (`note_id`, `name`, `type`, `locale`, `title`, `content`, `content_data`, `status`, `source`, `date_created`, `date_reminder`, `is_snoozable`, `layout`, `image`, `is_deleted`, `icon`) VALUES
(109, 'meta-hasFB-dec-q4-2022', 'marketing', 'en_US', 'Power up your Facebook ad strategy', 'Did you know that new privacy policies may be decreasing the effectiveness of your Facebook ads? Get back on track with Meta’s Conversion API. It creates a direct connection between the marketing data from your store and Meta, helping you more accurately track, attribute and improve your Facebook marketing performance.', '{}', 'pending', 'woocommerce.com', '2022-12-10 13:28:58', NULL, 0, 'plain', '', 0, 'info'),
(110, 'meta-noFB-dec-q4-2022', 'marketing', 'en_US', 'Create highly targeted Facebook ads with Facebook for WooCommerce', 'Sync your product catalog to create Facebook ads and track their performance – all from within your WooCommerce dashboard. With improved tracking signals and speed, plus more accurate tracking with the introduction of Meta’s Conversion API, you’ll have all the tools you need to run effective ad campaigns.', '{}', 'unactioned', 'woocommerce.com', '2022-12-12 12:52:24', NULL, 0, 'plain', '', 0, 'info'),
(111, 'needs-update-eway-payment-gateway-rin-2022-12-20', 'update', 'en_US', 'Security vulnerability patched in WooCommerce Eway Gateway', 'In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1', '{}', 'pending', 'woocommerce.com', '2023-01-05 12:49:04', NULL, 0, 'plain', '', 0, 'info'),
(112, 'updated-eway-payment-gateway-rin-2022-12-20', 'update', 'en_US', 'WooCommerce Eway Gateway has been automatically updated', 'Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.', '{}', 'pending', 'woocommerce.com', '2023-01-05 12:49:04', NULL, 0, 'plain', '', 0, 'info'),
(113, 'storeediting_feedback_jan_2023', 'marketing', 'en_US', 'Tell us what you need to customize your store!', 'We need your feedback. Please spare a few minutes to share your input on what is most important to you when designing and customizing your storefront to help us build the features you need.', '{}', 'unactioned', 'woocommerce.com', '2023-01-13 12:49:37', NULL, 0, 'plain', '', 0, 'info'),
(114, 'ecomm-wc-navigation-survey-2023', 'info', 'en_US', 'Navigating WooCommerce on WordPress.com', 'We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.', '{}', 'pending', 'woocommerce.com', '2023-01-16 13:14:39', NULL, 0, 'plain', '', 0, 'info'),
(115, 'affirm_q1_2023', 'marketing', 'en_US', 'Turn more browsers into buyers with flexible payments', 'When you offer flexible payment options to shoppers, they\'re more likely to convert. It’s why businesses offering Affirm see an average order value lift of 63%. Affirm tailors your store\'s payment options with terms proven to reach new customers, boost conversions, and grow sales.', '{}', 'pending', 'woocommerce.com', '2023-03-13 12:47:37', NULL, 0, 'plain', '', 0, 'info'),
(116, 'google_listings_ads_pmax_i1_q1_2023_no_gla', 'marketing', 'en_US', 'Create more engaging ads – without the hard work', 'Get in front of millions of shoppers searching for products like yours with Google Listings &amp; Ads. With new customization features, Google automatically tests multiple combinations of text and images to create the most engaging ad to boost your business. Plus, get up to $500 in ad credit – terms and conditions apply.', '{}', 'unactioned', 'woocommerce.com', '2023-03-16 12:41:33', NULL, 0, 'plain', '', 0, 'info'),
(117, 'google_listings_ads_pmax_i1_q1_2023_with_gla', 'marketing', 'en_US', 'New customization features to boost your business', 'You can now add custom images, messaging, and URLs to campaigns in Google Listings &amp; Ads. Google then automatically tests multiple combinations to create the most engaging version to help boost your business. Get more sales with dynamic content – edit an existing campaign or create a new ad now.', '{}', 'pending', 'woocommerce.com', '2023-03-16 12:41:33', NULL, 0, 'plain', '', 0, 'info'),
(118, 'woocommerce-wcpay-march-2023-update-needed', 'update', 'en_US', 'Action required: Security update for WooCommerce Payments', '<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.', '{}', 'pending', 'woocommerce.com', '2023-03-24 16:38:07', NULL, 0, 'plain', '', 0, 'info'),
(119, 'tap_to_pay_iphone_q2_2023_no_wcpay', 'marketing', 'en_US', 'Accept in-person contactless payments on your iPhone', 'Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.', '{}', 'unactioned', 'woocommerce.com', '2023-04-04 13:03:57', NULL, 0, 'plain', '', 0, 'info'),
(120, 'tap_to_pay_iphone_q2_2023_with_wcpay', 'marketing', 'en_US', 'New: accept in-person contactless payments on your iPhone', 'Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!', '{}', 'pending', 'woocommerce.com', '2023-04-04 13:03:57', NULL, 0, 'plain', '', 0, 'info'),
(121, 'woocommerce-WCPreOrders-april-2023-update-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce Pre-Orders extension', '<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(122, 'wc-admin-wcpay-denmark-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Denmark!', 'We’ve recently released WooCommerce Payments in Denmark. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(123, 'wc-admin-wcpay-greece-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Greece!', 'We’ve recently released WooCommerce Payments in Greece. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(124, 'wc-admin-wcpay-norway-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Norway!', 'We’ve recently released WooCommerce Payments in Norway. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(125, 'wc-admin-wcpay-slovakia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Slovakia!', 'We’ve recently released WooCommerce Payments in Slovakia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(126, 'wc-admin-wcpay-finland-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Finland!', 'We’ve recently released WooCommerce Payments in Finland. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(127, 'wc-admin-wcpay-estonia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Estonia!', 'We’ve recently released WooCommerce Payments in Estonia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(128, 'wc-admin-wcpay-lithuania-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Lithuania!', 'We’ve recently released WooCommerce Payments in Lithuania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(129, 'wc-admin-wcpay-slovenia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Slovenia!', 'We’ve recently released WooCommerce Payments in Slovenia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(130, 'wc-admin-wcpay-latvia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Latvia!', 'We’ve recently released WooCommerce Payments in Latvia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(131, 'wc-admin-wcpay-cyprus-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Cyprus!', 'We’ve recently released WooCommerce Payments in Cyprus. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(132, 'wc-admin-wcpay-malta-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Malta!', 'We’ve recently released WooCommerce Payments in Malta. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(133, 'wc-admin-wcpay-luxembourg-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Luxembourg!', 'We’ve recently released WooCommerce Payments in Luxembourg. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-04-15 13:21:17', NULL, 0, 'plain', '', 0, 'info'),
(134, 'wc_admin_BNPL_WCPay_coming-soon_Q1_2023', 'marketing', 'en_US', 'Buy now, pay later is heading to WooCommerce Payments', 'Great news: full integration with Afterpay and Affirm is on its way to WooCommerce Payments! You’ll soon be able to increase your order values, sell more, and offer customers a payment option they’ll love — with no extra downloads or extensions required.', '{}', 'pending', 'woocommerce.com', '2023-04-27 12:43:51', NULL, 0, 'plain', '', 0, 'info'),
(135, 'woopay-beta-existingmerchants-noaction-27APR23', 'info', 'en_US', 'WooPay is back!', 'Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-04-28 13:01:31', NULL, 0, 'plain', '', 0, 'info'),
(136, 'woopay-beta-existingmerchants-update-27APR23', 'info', 'en_US', 'WooPay is back!', 'Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-04-28 13:01:31', NULL, 0, 'plain', '', 0, 'info'),
(137, 'woopay-beta-existingmerchants-noaction-27APR23-test2', 'info', 'en_US', 'WooPay is back!', 'Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-04-28 13:01:31', NULL, 0, 'plain', '', 0, 'info'),
(138, 'woopay-beta-existingmerchants-update-27APR23-test', 'info', 'en_US', 'WooPay is back!', 'Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-04-28 13:01:31', NULL, 0, 'plain', '', 0, 'info'),
(139, 'woopay-beta-merchantrecruitment-04MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.', '{}', 'pending', 'woocommerce.com', '2023-05-05 12:53:46', NULL, 0, 'plain', '', 0, 'info'),
(140, 'woopay-beta-merchantrecruitment-update-04MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.', '{}', 'pending', 'woocommerce.com', '2023-05-05 12:53:46', NULL, 0, 'plain', '', 0, 'info'),
(141, 'woopay-beta-merchantrecruitment-short-04MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-05 12:53:46', NULL, 0, 'plain', '', 0, 'info'),
(142, 'woopay-beta-merchantrecruitment-short-update-04MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.', '{}', 'pending', 'woocommerce.com', '2023-05-05 12:53:46', NULL, 0, 'plain', '', 0, 'info'),
(143, 'woopay-beta-merchantrecruitment-short-06MAY23-TESTA', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-07 12:41:47', NULL, 0, 'plain', '', 0, 'info'),
(144, 'woopay-beta-merchantrecruitment-short-06MAY23-TESTB', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-07 12:41:47', NULL, 0, 'plain', '', 0, 'info'),
(145, 'woopay-beta-merchantrecruitment-short-06MAY23-TESTC', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-07 12:41:47', NULL, 0, 'plain', '', 0, 'info'),
(146, 'woopay-beta-merchantrecruitment-short-06MAY23-TESTD', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-07 12:41:47', NULL, 0, 'plain', '', 0, 'info'),
(147, 'woopay-beta-merchantrecruitment-short-09MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.', '{}', 'pending', 'woocommerce.com', '2023-05-10 12:50:10', NULL, 0, 'plain', '', 0, 'info'),
(148, 'woopay-beta-merchantrecruitment-short-update-09MAY23', 'info', 'en_US', 'Increase conversions with WooPay — our fastest checkout yet', 'Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.', '{}', 'pending', 'woocommerce.com', '2023-05-10 12:50:10', NULL, 0, 'plain', '', 0, 'info'),
(149, 'payoneer_q2_2023', 'marketing', 'en_US', 'Grow with the next generation of payment processing', 'Ready to stand out in the new global economy? Payoneer Checkout gives you the power to securely accept payments worldwide, build a checkout that customers love, and manage your store’s transactions and finances – all from the same place.', '{}', 'pending', 'woocommerce.com', '2023-05-14 13:04:39', NULL, 0, 'plain', '', 0, 'info'),
(150, 'ipp_refresh_q2_2023_us_inbox_notification', 'marketing', 'en_US', 'Grow on the go with in-person payments', 'Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.', '{}', 'pending', 'woocommerce.com', '2023-05-18 13:02:51', NULL, 0, 'plain', '', 0, 'info'),
(151, 'ipp_refresh_q2_2023_ca_inbox_notification', 'marketing', 'en_US', 'Grow on the go with in-person payments', 'Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.', '{}', 'pending', 'woocommerce.com', '2023-05-18 13:02:51', NULL, 0, 'plain', '', 0, 'info'),
(152, 'product_management_card_sorting', 'survey', 'en_US', 'How do you create and edit products?', 'Have a say in the future of WooCommerce. Take part in a brief exercise and help us understand what information is important to you while editing products.', '{}', 'unactioned', 'woocommerce.com', '2023-05-19 12:53:40', NULL, 0, 'plain', '', 0, 'info'),
(153, 'woocommerce-WCstripe-May-2023-updated-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce Stripe plugin', '<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.', '{}', 'pending', 'woocommerce.com', '2023-06-02 13:29:01', NULL, 0, 'plain', '', 0, 'info'),
(154, 'woocommerce-WCReturnsWarranty-June-2023-updated-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce Returns and Warranty Requests extension', '<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.', '{}', 'pending', 'woocommerce.com', '2023-06-03 12:56:48', NULL, 0, 'plain', '', 0, 'info'),
(155, 'woocommerce-WCSubscriptions-June-2023-updated-needed', 'marketing', 'en_US', 'Action required: Security update of WooCommerce Subscriptions', '<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.', '{}', 'pending', 'woocommerce.com', '2023-06-06 13:25:55', NULL, 0, 'plain', '', 0, 'info'),
(156, 'woocommerce-WCPayments-June-2023-updated-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce Payments', '<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.', '{}', 'pending', 'woocommerce.com', '2023-06-07 12:45:03', NULL, 0, 'plain', '', 0, 'info'),
(157, 'woocommerce_hpos_1st_notification_q2_2023', 'marketing', 'en_US', 'High-Performance Order Storage (HPOS) is on its way', 'Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers — and lightning-quick order lookup for you. Enablement is optional and you won’t be forced to update, but read on to see why this was our most requested new feature.', '{}', 'unactioned', 'woocommerce.com', '2023-06-07 12:45:03', NULL, 0, 'plain', '', 0, 'info'),
(158, 'woocommerce-WCOPC-June-2023-updated-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce One Page Checkout', '<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.', '{}', 'pending', 'woocommerce.com', '2023-06-21 12:47:09', NULL, 0, 'plain', '', 0, 'info'),
(159, 'wc-admin-wcpay-bulgaria-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Bulgaria!', 'We’ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(160, 'wc-admin-wcpay-czechia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Czechia!', 'We’ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(161, 'wc-admin-wcpay-croatia-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Croatia!', 'We’ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(162, 'wc-admin-wcpay-hungary-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Hungary!', 'We’ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(163, 'wc-admin-wcpay-romania-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Romania!', 'We’ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(164, 'wc-admin-wcpay-sweden-Q2-2023', 'marketing', 'en_US', 'WooCommerce Payments is now available in Sweden!', 'We’ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.', '{}', 'pending', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(165, 'tiktok-spc_june-2023', 'marketing', 'en_US', 'Take the guesswork out of TikTok advertising', 'Save time and create smarter ads using new automated campaign management from TikTok for WooCommerce. Simplify your campaign creation and watch TikTok’s machine learning build, target, and optimize ads that support your advertising goals — and grow your audience.', '{}', 'unactioned', 'woocommerce.com', '2023-06-30 13:28:56', NULL, 0, 'plain', '', 0, 'info'),
(166, 'woocommerce-WCGC-July-2023-update-needed', 'update', 'en_US', 'Action required: Security update of WooCommerce GoCardless Extension', '<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.', '{}', 'pending', 'woocommerce.com', '2023-07-05 12:56:56', NULL, 0, 'plain', '', 0, 'info'),
(167, 'woocommerce-shipping-fedex-api-outage-2023-07-16', 'warning', 'en_US', 'Scheduled FedEx API outage — July 2023', 'On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.', '{}', 'pending', 'woocommerce.com', '2023-07-06 13:05:05', NULL, 0, 'plain', '', 0, 'info'),
(168, 'wcship-2023-07-hazmat-update-needed', 'update', 'en_US', 'Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension', '<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.', '{}', 'pending', 'woocommerce.com', '2023-07-12 13:25:08', NULL, 0, 'plain', '', 0, 'info'),
(169, 'square_payments_q3_2023', 'marketing', 'en_US', 'Square for WooCommerce', 'Connect your Square account with WooCommerce to accept online and in-person payments (including contactless payments and cross-channel gift cards) quickly and securely. Save time by syncing sales, customers, and items and inventory — and manage everything through one centralized platform.', '{}', 'unactioned', 'woocommerce.com', '2023-07-20 13:06:40', NULL, 0, 'plain', '', 0, 'info'),
(170, 'wc-admin-woopayments-rebrand', 'marketing', 'en_US', 'WooCommerce Payments is now WooPayments', 'We’ve changed the name as part of recent updates to the Woo brand. You’ll still enjoy the same seamless payments experience — just look for WooPayments in your WordPress admin.', '{}', 'pending', 'woocommerce.com', '2023-07-29 13:03:52', NULL, 0, 'plain', '', 0, 'info'),
(171, 'woocommerce-WCStripe-Aug-2023-update-needed', 'update', 'en_US', 'Action required: Security update for WooCommerce Stripe plugin', '<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.', '{}', 'pending', 'woocommerce.com', '2023-08-03 12:48:35', NULL, 0, 'plain', '', 0, 'info'),
(172, 'woocommerce-WCStripe-Aug-2023-security-updated', 'update', 'en_US', 'Security update of WooCommerce Stripe plugin', '<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.', '{}', 'pending', 'woocommerce.com', '2023-08-03 12:48:35', NULL, 0, 'plain', '', 0, 'info'),
(173, 'woocommerce-WooPayments-Aug-2023-update-needed', 'update', 'en_US', 'Action required: Security update for WooPayments (WooCommerce Payments) plugin', '<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.', '{}', 'pending', 'woocommerce.com', '2023-08-03 12:48:35', NULL, 0, 'plain', '', 0, 'info'),
(174, 'woocommerce-WooPayments-Aug-2023-security-updated', 'update', 'en_US', 'Security update of WooPayments (WooCommerce Payments) plugin', '<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.', '{}', 'pending', 'woocommerce.com', '2023-08-03 12:48:35', NULL, 0, 'plain', '', 0, 'info'),
(175, 'tiktok-apac-webinar-2023', 'marketing', 'en_US', 'Unlocking TikTok: Live Webinar August 9', 'Join us on August 9 for a free online masterclass with our partners at TikTok, tailored to Woo merchants in the APAC region (11 am AEST). You’ll learn how to connect your store to TikTok, unlock expert advertising tools, and reach its one billion active global users — all from the comfort of your own home.', '{}', 'pending', 'woocommerce.com', '2023-08-05 12:57:37', NULL, 0, 'plain', '', 0, 'info'),
(176, 'avalara_q3-2023_noAvaTax', 'marketing', 'en_US', 'Automatically calculate VAT in real time', 'Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.', '{}', 'pending', 'woocommerce.com', '2023-08-09 12:42:50', NULL, 0, 'plain', '', 0, 'info'),
(177, 'avalara_q3-2023_withAvaTax', 'marketing', 'en_US', 'New in AvaTax: Calculate VAT in real time', 'Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.', '{}', 'pending', 'woocommerce.com', '2023-08-09 12:42:50', NULL, 0, 'plain', '', 0, 'info'),
(178, 'google_uxstudy_recruitment_q3-2023', 'marketing', 'en_US', 'Share your feedback in exchange for $150', 'Woo has teamed up with Google to collect feedback on advertising products and services available to you. If selected, you’ll receive an incentive equal to $150 USD for a 60-minute interview that can help improve the products you use to advertise. If interested, please take 2 minutes to complete the screening survey.', '{}', 'pending', 'woocommerce.com', '2023-08-10 13:08:05', NULL, 0, 'plain', '', 0, 'info'),
(179, 'woo-activation-survey-blockers-22AUG23', 'info', 'en_US', 'How can we help you get that first sale?', 'Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!', '{}', 'pending', 'woocommerce.com', '2023-08-23 12:53:52', NULL, 0, 'plain', '', 0, 'info'),
(180, 'tiktok_shopGTM_q3-2023_hasTikTok', 'marketing', 'en_US', 'You can now sell your products on TikTok Shop', 'TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.', '{}', 'pending', 'woocommerce.com', '2023-09-06 13:25:38', NULL, 0, 'plain', '', 0, 'info'),
(181, 'tiktok_shopGTM_q3-2023_noTikTok', 'marketing', 'en_US', 'You can now sell your products on TikTok Shop', 'TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.', '{}', 'pending', 'woocommerce.com', '2023-09-07 13:19:46', NULL, 0, 'plain', '', 0, 'info'),
(182, 'klaviyo_q3_2023', 'marketing', 'en_US', 'Build long lasting relationships with Klaviyo for WooCommerce', 'Increase customer engagement and boost conversions with powerful email and SMS automation from Klaviyo. Fully integrated with your Woo store, Klaviyo enables you to send personalized communications to your customers — ensuring that the right message is delivered at the right time for maximum impact.', '{}', 'pending', 'woocommerce.com', '2023-09-12 13:37:45', NULL, 0, 'plain', '', 0, 'info'),
(183, 'wc_admin_BNPL_WCPay_Q3_2023', 'marketing', 'en_US', 'Afterpay and Affirm have arrived in WooCommerce Payments!', 'Give your customers more power with buy now, pay later from Afterpay and Affirm — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.', '{}', 'pending', 'woocommerce.com', '2023-09-19 13:23:59', NULL, 0, 'plain', '', 0, 'info'),
(184, 'wc_admin_afterpay_WCPay_Q3_2023', 'marketing', 'en_US', 'Afterpay has arrived in WooCommerce Payments!', 'Give your customers more power with buy now, pay later from Afterpay — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.', '{}', 'pending', 'woocommerce.com', '2023-09-19 13:23:59', NULL, 0, 'plain', '', 0, 'info'),
(185, 'woocommerce-usermeta-Sept2023-productvendors', 'update', 'en_US', 'Your store requires a security update', '<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.', '{}', 'pending', 'woocommerce.com', '2023-09-20 12:55:53', NULL, 0, 'plain', '', 0, 'info'),
(186, 'Klarna_10OCT23', 'marketing', 'en_US', 'Klarna is now available', 'This is a test. Klarna is now available.', '{}', 'pending', 'woocommerce.com', '2023-10-11 13:11:28', NULL, 0, 'plain', '', 0, 'info'),
(187, 'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23', 'marketing', 'en_US', 'Save 35% on a WooPayments card reader', 'Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our M2 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends October 29, 2023.', '{}', 'pending', 'woocommerce.com', '2023-10-13 12:42:44', NULL, 0, 'plain', '', 0, 'info'),
(188, 'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23', 'marketing', 'en_US', 'Save 35% on a WooPayments card reader', 'Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends 29th October 2023.', '{}', 'pending', 'woocommerce.com', '2023-10-13 12:42:44', NULL, 0, 'plain', '', 0, 'info'),
(189, 'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23', 'marketing', 'en_US', 'Save 35% on a WooPayments card reader', 'Have you been thinking about selling your products or services in person? Now’s the perfect time to do so, as we’re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Don’t miss out — this offer ends October 29, 2023.', '{}', 'pending', 'woocommerce.com', '2023-10-13 12:42:44', NULL, 0, 'plain', '', 0, 'info'),
(190, 'woocommerce-STRIPE-Oct-2023-update-needed', 'update', 'en_US', 'Action required: Security update for WooCommerce Stripe Gateway', '<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.', '{}', 'pending', 'woocommerce.com', '2023-10-18 13:22:25', NULL, 0, 'plain', '', 0, 'info'),
(191, 'wc_admin_WooPay_Q4_2023', 'marketing', 'en_US', 'Convert more sales with our fastest checkout yet', 'Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.', '{}', 'pending', 'woocommerce.com', '2023-10-28 12:58:10', NULL, 0, 'plain', '', 0, 'info'),
(192, 'wc_admin_WooPay_Oct30_2023', 'marketing', 'en_US', 'Convert more sales with our fastest checkout yet', 'Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.', '{}', 'pending', 'woocommerce.com', '2023-11-03 12:53:37', NULL, 0, 'plain', '', 0, 'info'),
(193, 'paypal_paylater_q4_23', 'marketing', 'en_US', 'Boost your sales this holiday season with PayPal', 'Set yourself up for success this holiday season by allowing customers to pay the way they prefer. With the latest version of PayPal Payments, you can accept PayPal, Venmo (US), Pay Later*, credit and debit cards, and popular alternative payment methods in one secure solution.', '{}', 'pending', 'woocommerce.com', '2023-11-07 13:01:08', NULL, 0, 'plain', '', 0, 'info'),
(194, 'tap_to_pay_iphone_q4_2023_no_woopayments', 'marketing', 'en_US', 'Accept in-person contactless payments on your iPhone', 'Tap to Pay on iPhone and WooPayments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.', '{}', 'pending', 'woocommerce.com', '2023-12-06 12:58:14', NULL, 0, 'plain', '', 0, 'info'),
(195, 'tap_to_pay_iphone_q4_2023_with_woopayments', 'marketing', 'en_US', 'Accept in-person contactless payments on your iPhone', 'Tap to Pay on iPhone is quick, secure, and simple to set up in WooPayments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!', '{}', 'pending', 'woocommerce.com', '2023-12-06 12:58:14', NULL, 0, 'plain', '', 0, 'info'),
(196, 'amazon-mcf-reviews-2023-12-07', 'marketing', 'en_US', 'Enjoying Amazon MCF for WooCommerce?', 'We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!', '{}', 'pending', 'woocommerce.com', '2023-12-07 12:43:07', NULL, 0, 'plain', '', 0, 'info'),
(197, 'amazon_pay_reactivate_q1-24', 'marketing', 'en_US', 'Special offer: Activate 0% promo rate for Amazon Pay', 'For a limited time, Woo merchants who register with Amazon Pay can enjoy a promotional rate of 0% on all transaction fees for 30 days. Valid for businesses based in the United Kingdom. Terms and conditions apply.', '{}', 'pending', 'woocommerce.com', '2024-01-10 13:12:17', NULL, 0, 'plain', '', 0, 'info'),
(198, 'remove_estimated_deposits_2024', 'marketing', 'en_US', 'Estimated deposits are going away', 'To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.', '{}', 'pending', 'woocommerce.com', '2024-01-19 13:00:50', NULL, 0, 'plain', '', 0, 'info'),
(199, 'custom_order_attribution_inbox_q1_2024', 'marketing', 'en_US', 'NEW: Custom Order Attribution', 'Order attribution tracking is now available for all Woo stores! See whether an order came from a search ad, video, or email. Make better marketing decisions and watch your products go from “maybe” to “must-have.”', '{}', 'pending', 'woocommerce.com', '2024-02-06 13:26:53', NULL, 0, 'plain', '', 0, 'info'),
(200, 'wc_admin_UKpricingchange_WCPay_Q1_2024', 'marketing', 'en_US', 'Fee Changes for WooPayments in the EEA and UK', 'WooPayments fees for transactions between the EEA and UK will change as of 1st March, 2024. Transactions between the UK and EEA are now deemed by card networks to be cross-border, thus international payment fees will be applicable. This also changes base processing fees.', '{}', 'pending', 'woocommerce.com', '2024-03-01 12:58:34', NULL, 0, 'plain', '', 0, 'info'),
(201, 'airwallex_q1_2024', 'marketing', 'en_US', 'Save big on foreign exchange (FX) fees', 'Boost your international sales by offering Apple Pay, Google Pay, and 60+ local payment methods with Airwallex. Save time and money by settling payments directly in USD, EUR, HKD, SGD, AUD, and more — without the extra FX fees. Simple, cost-effective, fast.', '{}', 'unactioned', 'woocommerce.com', '2024-03-01 12:58:34', NULL, 0, 'plain', '', 0, 'info');

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_admin_note_actions`
--

CREATE TABLE `qs_wc_admin_note_actions` (
  `action_id` bigint UNSIGNED NOT NULL,
  `note_id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `actioned_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonce_action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `nonce_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_wc_admin_note_actions`
--

INSERT INTO `qs_wc_admin_note_actions` (`action_id`, `note_id`, `name`, `label`, `query`, `status`, `is_primary`, `actioned_text`, `nonce_action`, `nonce_name`) VALUES
(1, 1, 'connect', 'Connect', '?page=wc-addons&section=helper', 'unactioned', 0, '', NULL, NULL),
(2, 2, 'yes-please', 'Yes please!', 'https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin', 'actioned', 0, '', NULL, NULL),
(3, 3, 'open-marketing-hub', 'Open marketing hub', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin&path=/marketing', 'actioned', 0, '', NULL, NULL),
(36, 19, 'learn-more', 'Learn more', 'https://docs.woocommerce.com/document/variable-product/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(213, 20, 'visit-the-theme-marketplace', 'Visit the theme marketplace', 'https://woocommerce.com/product-category/themes/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(214, 21, 'affirm-insight-first-product-and-payment', 'Yes', '', 'actioned', 0, 'Thanks for your feedback', NULL, NULL),
(215, 22, 'day-after-first-product', 'Learn more', 'https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(232, 23, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/', 'actioned', 0, '', NULL, NULL),
(313, 24, 'view-payment-gateways', 'Learn more', 'https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/', 'actioned', 1, '', NULL, NULL),
(346, 25, 'tracking-opt-in', 'Activate usage tracking', '', 'actioned', 1, '', NULL, NULL),
(379, 26, 'share-feedback', 'Share feedback', 'https://automattic.survey.fm/store-setup-survey', 'actioned', 0, '', NULL, NULL),
(380, 27, 'affirm-insight-first-sale', 'Yes', '', 'actioned', 0, 'Thanks for your feedback', NULL, NULL),
(381, 27, 'deny-insight-first-sale', 'No', '', 'actioned', 0, 'Thanks for your feedback', NULL, NULL),
(2109, 38, 'first-downloadable-product-handling', 'Learn more', 'https://docs.woocommerce.com/document/digital-downloadable-product-handling/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(2779, 42, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(5488, 48, 'mercadopago_q3_2021_EN', 'Free download', 'https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN', 'actioned', 1, '', NULL, NULL),
(6065, 49, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(7550, 43, 'wayflyer_q3_2021', 'Get funded', 'https://woocommerce.com/products/wayflyer/', 'actioned', 1, '', NULL, NULL),
(7551, 41, 'eu_vat_changes_2021', 'Learn more about the EU tax regulations', 'https://woocommerce.com/posts/new-eu-vat-regulations', 'actioned', 1, '', NULL, NULL),
(7552, 4, 'open_wc_paypal_payments_product_page', 'Learn more', 'https://woocommerce.com/products/woocommerce-paypal-payments/', 'actioned', 1, '', NULL, NULL),
(7553, 5, 'upgrade_now_facebook_pixel_api', 'Upgrade now', 'plugin-install.php?tab=plugin-information&plugin=&section=changelog', 'actioned', 1, '', NULL, NULL),
(7554, 6, 'learn_more_facebook_ec', 'Learn more', 'https://woocommerce.com/products/facebook/', 'unactioned', 1, '', NULL, NULL),
(7570, 30, 'learn-more', 'Learn about Instant Deposits eligibility', 'https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits', 'actioned', 1, '', NULL, NULL),
(7586, 50, 'learn-more', 'Learn more', 'https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch', 'unactioned', 1, '', NULL, NULL),
(7679, 12, 'boost-sales-marketing-guide', 'See marketing guide', 'https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales', 'actioned', 1, '', NULL, NULL),
(7680, 13, 'grow-your-business-marketing-guide', 'See marketing guide', 'https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business', 'actioned', 1, '', NULL, NULL),
(7681, 14, 'add-apple-pay', 'Add Apple Pay', '/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments', 'actioned', 1, '', NULL, NULL),
(7682, 14, 'learn-more', 'Learn more', 'https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay', 'actioned', 1, '', NULL, NULL),
(7683, 15, 'boost-sales-marketing-guide', 'See marketing guide', 'https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales', 'actioned', 1, '', NULL, NULL),
(7684, 16, 'grow-your-business-marketing-guide', 'See marketing guide', 'https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business', 'actioned', 1, '', NULL, NULL),
(7939, 52, 'browse_extensions', 'Browse extensions', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin&page=wc-addons', 'unactioned', 1, '', NULL, NULL),
(7940, 53, 'browse_extensions', 'Browse extensions', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin&page=wc-addons', 'unactioned', 1, '', NULL, NULL),
(9185, 61, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(10567, 36, 'get-woo-commerce-payments', 'Get WooCommerce Payments', 'admin.php?page=wc-admin&action=setup-woocommerce-payments', 'actioned', 1, '', NULL, NULL),
(10568, 37, 'get-woocommerce-payments', 'Get WooCommerce Payments', 'admin.php?page=wc-admin&action=setup-woocommerce-payments', 'actioned', 1, '', NULL, NULL),
(11082, 63, 'wc_simple_payments_m2_reader_launch_q1_2022', 'Learn more', 'https://woocommerce.com/in-person-payments/', 'actioned', 0, '', NULL, NULL),
(11192, 54, 'stripe_applepay_holiday2021', 'Accept Apple Pay', 'https://woocommerce.com/apple-pay/', 'actioned', 1, '', NULL, NULL),
(11193, 55, 'square_applepay_holiday2021', 'Accept Apple Pay', 'https://woocommerce.com/apple-pay/', 'actioned', 1, '', NULL, NULL),
(11194, 56, 'wcpay_applepay_holiday2021', 'Accept Apple Pay', 'https://woocommerce.com/apple-pay/', 'actioned', 1, '', NULL, NULL),
(12336, 64, 'wcpay_applepay_q1_2022', 'Let your customers know about Apple Pay', 'https://developer.apple.com/apple-pay/marketing/', 'actioned', 0, '', NULL, NULL),
(12337, 65, 'stripe_applepay_q1_2022', 'Add Apple Pay', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout&section=stripe', 'actioned', 0, '', NULL, NULL),
(12338, 66, 'square_applepay_q1_2022', 'Add Apple Pay', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square', 'actioned', 0, '', NULL, NULL),
(12481, 71, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/?utm_source=inbox', 'actioned', 0, '', NULL, NULL),
(13376, 67, 'lead_gen_existing_customers_1', 'Yes, please', 'https://woocommerce.com/take-your-business-to-the-next-level/?utm_source=inbox_note&utm_medium=product&utm_campaign=lead_gen_existing_customers_1', 'actioned', 0, '', NULL, NULL),
(13575, 76, 'update-db_run', 'Update WooCommerce Database', 'https://qualstream.net/wp-admin/themes.php?do_update_woocommerce=true', 'unactioned', 1, 'wc_db_update', 'wc_db_update', 'wc_db_update_nonce'),
(13576, 76, 'update-db_learn-more', 'Learn more about updates', 'https://docs.woocommerce.com/document/how-to-update-woocommerce/', 'unactioned', 0, '', NULL, NULL),
(13647, 72, 'pinterest_gtm_q2_2021', 'Get started for free', 'https://woocommerce.com/products/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_gtm_q2_2021', 'unactioned', 1, '', NULL, NULL),
(13757, 74, 'woocommerce_payments_subscriptions_nopayments_q2_2022', 'Start selling subscriptions', 'https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_nopayments_q2_2022', 'actioned', 0, '', NULL, NULL),
(13758, 75, 'woocommerce_payments_subscriptions_yespayments_q2_2022', 'Get started', 'https://woocommerce.com/document/payments/subscriptions/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_yespayments_q2_2022#section-2', 'actioned', 0, '', NULL, NULL),
(14177, 81, 'googlelistings_multicountrygtm_q22022', 'Get Google Listings & Ads – free', 'https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022', 'actioned', 1, '', NULL, NULL),
(14404, 77, 'setup_task_second_survey_q2_2022_share_your_input', 'Share your input', 'https://t.maze.co/87390007', 'actioned', 0, '', NULL, NULL),
(14442, 80, 'affirm_q2_2022', 'Get started for free', 'https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022', 'unactioned', 1, '', NULL, NULL),
(14815, 82, 'wc_ipp_order_creation_GTM_launch_q2_2022', 'Grow my business on the go', 'https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_ipp_order_creation_GTM_launch_q2_2022', 'actioned', 0, '', NULL, NULL),
(15704, 79, 'wc-admin-EU-consumer-protection', 'Learn more about these changes', 'https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance', 'actioned', 1, '', NULL, NULL),
(15854, 84, 'TikTok q2_2022', 'Promote my products on TikTok', 'https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=TikTok%20q2_2022', 'unactioned', 1, '', NULL, NULL),
(16147, 85, 'tiktok-webinar-promo-july2022-button', 'RSVP Now', 'https://gettingstartedwithtiktokforwoocommerce.splashthat.com/', 'actioned', 1, '', NULL, NULL),
(16973, 73, 'setup_task_initiative_survey_q2_2022_share_your_input', 'Share your input', 'https://t.maze.co/87390007', 'actioned', 0, '', NULL, NULL),
(17657, 87, 'klarna_q3_2022', 'Grow with Klarna', 'https://woocommerce.com/products/klarna-payments?utm_source=inbox_note&utm_medium=product&utm_campaign=klarna_q3_2022', 'unactioned', 1, '', NULL, NULL),
(18033, 86, 'mercado_pago_q3_2022', 'Free download', 'https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox_note&utm_medium=product&utm_campaign=mercado_pago_q3_2022', 'unactioned', 1, '', NULL, NULL),
(18039, 90, 'mobile_app_order_management_q3_2022', 'Get the WooCommerce Mobile App', 'https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=mobile_app_order_management_q3_2022', 'actioned', 0, '', NULL, NULL),
(18620, 92, 'product_creation_usability_test_6_months_take_a_look', 'Try it now', 'https://t.maze.co/103446424', 'unactioned', 1, '', NULL, NULL),
(18621, 93, 'product_creation_usability_test_12_months_take_a_look', 'Try it now', 'https://t.maze.co/103446424', 'unactioned', 1, '', NULL, NULL),
(18622, 91, 'product_creation_usability_test_3_months_take_a_look', 'Try it now', 'https://t.maze.co/103446424', 'unactioned', 1, '', NULL, NULL),
(18741, 94, 'cta_customize_your_deposits', 'Customize your deposits', 'https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=cta_customize_your_deposits', 'actioned', 1, '', NULL, NULL),
(18742, 94, 'dismiss_customize_your_deposits', 'Dismiss', '', 'actioned', 1, '', NULL, NULL),
(19556, 97, 'pre-black-friday-sale-2022-announcement', 'Shop the sale', 'https://woocommerce.com/marketplace-sale/?utm_source=inbox_note&utm_medium=product&utm_campaign=pre-black-friday-sale-2022-announcement', 'actioned', 0, '', NULL, NULL),
(19760, 95, 'googlelistings_signals2022_hasGLA_click', 'Connect Google Listings & Ads', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin&path=marketing', 'unactioned', 1, '', NULL, NULL),
(19761, 96, 'googlelistings_signals2022_noGLA', 'Connect Google Listings & Ads', 'https://woocommerce.com/products/google-listings-and-ads/?utm_medium=product&utm_source=inbox_note&utm_campaign=googlelistings_signals2022_noGLA', 'unactioned', 1, '', NULL, NULL),
(20122, 99, 'facebook_q4-2022_hasFB-click', 'Drive more demand', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook', 'unactioned', 1, '', NULL, NULL),
(20204, 100, 'facebook_q4-2022_noFB-click', 'Get started', 'https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=facebook_q4-2022_noFB-click', 'unactioned', 1, '', NULL, NULL),
(20289, 59, 'wc_shipping_mobile_app_q4_2021', 'Get the WooCommerce Mobile App', 'https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021', 'actioned', 1, '', NULL, NULL),
(20290, 7, 'set-up-concierge', 'Schedule free session', 'https://wordpress.com/me/concierge', 'actioned', 1, '', NULL, NULL),
(20292, 9, 'learn-more-ecomm-unique-shopping-experience', 'Learn more', 'https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox', 'actioned', 1, '', NULL, NULL),
(20293, 10, 'watch-the-webinar', 'Watch the webinar', 'https://youtu.be/V_2XtCOyZ7o', 'actioned', 1, '', NULL, NULL),
(20296, 18, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'unactioned', 1, '', NULL, NULL),
(21827, 98, 'shipping_category_q4_2022_click', 'Automate my shipping', 'https://woocommerce.com/product-category/woocommerce-extensions/shipping-delivery-and-fulfillment/?categoryIds=28685&collections=product&page=1&utm_source=inbox_note&utm_medium=product&utm_campaign=shipping_category_q4_2022_click', 'unactioned', 1, '', NULL, NULL),
(22080, 109, 'meta-hasFB-dec-q4-2022', 'Connect your store', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook', 'unactioned', 1, '', NULL, NULL),
(22337, 110, 'meta-noFB-dec-q4-2022', 'Get started', 'https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=meta-noFB-dec-q4-2022', 'unactioned', 1, '', NULL, NULL),
(22629, 106, 'wc-admin-manualauthcapture', 'Learn more', 'https://woocommerce.com/document/woocommerce-payments/settings-guide/authorize-and-capture/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-manualauthcapture', 'actioned', 0, '', NULL, NULL),
(22954, 101, 'tiktok-targeted-q4-2022-click', 'Launch a campaign', 'https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-targeted-q4-2022-click', 'unactioned', 1, '', NULL, NULL),
(22958, 107, 'apple_pay_square_q422', 'Enable Apple Pay', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=square_credit_card', 'unactioned', 1, '', NULL, NULL),
(22959, 108, 'apple_pay_wcpay_q422', 'Enable Apple Pay', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments', 'unactioned', 1, '', NULL, NULL),
(23134, 62, 'share-navigation-survey-feedback', 'Share feedback', 'https://automattic.survey.fm/feedback-on-woocommerce-navigation', 'actioned', 1, '', NULL, NULL),
(24038, 113, 'storeediting_feedback_jan_2023', 'Share your input', 'https://t.maze.co/135212793', 'actioned', 1, '', NULL, NULL),
(24241, 103, 'woocommerce_admin_deprecation_q4_2022', 'Deactivate WooCommerce Admin', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php', 'actioned', 0, '', NULL, NULL),
(24242, 102, 'paypal_paylater_g3_q4_22', 'Install PayPal Payments', 'https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22', 'unactioned', 1, '', NULL, NULL),
(24283, 104, 'paypal_paylater_g2_q4_22', 'Install PayPal Payments', 'https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22', 'unactioned', 1, '', NULL, NULL),
(26177, 115, 'affirm_q1_2023', 'Get started with Affirm', 'https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q1_2023', 'actioned', 1, '', NULL, NULL),
(28101, 137, 'woopay-beta-existingmerchants-noaction-documentation-27APR23-test2', 'Documentation', 'https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23-test2', 'actioned', 0, '', NULL, NULL),
(28102, 137, 'woopay-beta-existingmerchants-noaction-documentation-27APR23-dismiss-test2', 'Dismiss', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin#', 'actioned', 1, '', NULL, NULL),
(28103, 138, 'woopay-beta-existingmerchants-update-WCPay-27APR23-test', 'Update WooCommerce Payments', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'actioned', 1, '', NULL, NULL),
(28104, 138, 'woopay-beta-existingmerchants-update-WCPay-27APR23-dismiss-test', 'Dismiss', 'http://qualstream.net/wp-admin/admin.php?page=wc-admin#', 'actioned', 0, '', NULL, NULL),
(29473, 134, 'wc-admin-BNPL-WCPay-coming-soon', 'Sign up now', 'https://woocommerce.com/buy-now-pay-later-for-woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-BNPL-WCPay-coming-soon', 'actioned', 1, '', NULL, NULL),
(29847, 149, 'payoneer_q2_2023', 'Get started with Payoneer', 'https://woocommerce.com/products/payoneer-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=payoneer_q2_2023', 'actioned', 1, '', NULL, NULL),
(30058, 116, 'google_listings_ads_pmax_i1_q1_2023_no_gla', 'Boost my business with Google', 'https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_no_gla', 'actioned', 0, '', NULL, NULL),
(30059, 117, 'google_listings_ads_pmax_i1_q1_2023_with_gla', 'Create a new ad', 'https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_with_gla', 'actioned', 0, '', NULL, NULL),
(30642, 122, 'wc-admin-wcpay-denmark-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/denmark/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-denmark-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30643, 123, 'wc-admin-wcpay-greece-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/greece/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-greece-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30644, 124, 'wc-admin-wcpay-norway-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/norway/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-norway-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30645, 125, 'wc-admin-wcpay-slovakia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/slovakia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovakia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30646, 126, 'wc-admin-wcpay-finland-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/finland/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-finland-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30647, 127, 'wc-admin-wcpay-estonia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/estonia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-estonia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30648, 128, 'wc-admin-wcpay-lithuania-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/lithuania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-lithuania-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30649, 129, 'wc-admin-wcpay-slovenia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/slovenia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovenia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30650, 130, 'wc-admin-wcpay-latvia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/latvia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-latvia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30651, 131, 'wc-admin-wcpay-cyprus-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/cyprus/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-cyprus-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30652, 132, 'wc-admin-wcpay-malta-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/malta/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-malta-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30653, 133, 'wc-admin-wcpay-luxembourg-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/luxembourg/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-luxembourg-Q2-2023', 'actioned', 1, '', NULL, NULL),
(30676, 152, 'product_management_card_sorting', 'Get started', 'https://t.maze.co/163892579', 'unactioned', 1, '', NULL, NULL),
(33270, 165, 'tiktok-spc_june-2023', 'Optimize my advertising', 'https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-spc_june-2023', 'actioned', 1, '', NULL, NULL),
(34156, 60, 'browse_extensions', 'Browse extensions', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-addons', 'unactioned', 1, '', NULL, NULL),
(34274, 83, 'wc-admin-wisepad3', 'Grow my business offline', 'https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3', 'actioned', 0, '', NULL, NULL),
(34635, 105, 'google_listings_ads_custom_attribute_mapping_q4_2022', 'Learn more', 'https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping', 'actioned', 0, '', NULL, NULL),
(35479, 157, 'woocommerce_hpos_1st_notification_q2_2023', 'Learn more about HPOS', 'https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023', 'actioned', 0, '', NULL, NULL),
(35757, 169, 'square_button_q3_2023', 'Get started with Square', 'https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023', 'actioned', 1, '', NULL, NULL),
(36118, 170, 'wc-admin-woopayments-rebrand', 'Learn more about WooPayments', 'https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-woopayments-rebrand', 'actioned', 1, '', NULL, NULL),
(36218, 175, 'tiktok-apac-webinar-2023', 'RSVP today', 'https://unlockingtiktokwithwoocommerce.splashthat.com/', 'actioned', 1, '', NULL, NULL),
(36687, 177, 'avalara_q3-2023_withAvaTax', 'Learn more about VAT settings', 'https://woocommerce.com/document/avalara-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_withAvaTax#section-15', 'unactioned', 1, '', NULL, NULL),
(36783, 178, 'google_uxstudy_recruitment_q3-2023', 'Take the survey', 'https://eachandother.fra1.qualtrics.com/jfe/form/SV_0W118szcJOtIkzc', 'unactioned', 1, '', NULL, NULL),
(37292, 159, 'wc-admin-wcpay-bulgaria-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023', 'actioned', 1, '', NULL, NULL),
(37293, 160, 'wc-admin-wcpay-czechia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(37296, 161, 'wc-admin-wcpay-croatia-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023', 'actioned', 1, '', NULL, NULL),
(37299, 162, 'wc-admin-wcpay-hungary-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023', 'actioned', 1, '', NULL, NULL),
(37302, 163, 'wc-admin-wcpay-romania-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023', 'actioned', 1, '', NULL, NULL),
(37305, 164, 'wc-admin-wcpay-sweden-Q2-2023', 'Simplify my payments', 'https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023', 'actioned', 1, '', NULL, NULL),
(38089, 120, 'tap_to_pay_iphone_q2_2023_with_wcpay', 'Set up Tap to Pay on iPhone', 'https://woocommerce.com/document/woopayments/in-person-payments/tap-to-pay-iphone?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay', 'actioned', 0, '', NULL, NULL),
(38640, 150, 'ipp_refresh_q2_2023_us_inbox_notification', 'Grow my business on the go', 'https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification', 'actioned', 0, '', NULL, NULL),
(38641, 151, 'ipp_refresh_q2_2023_ca_inbox_notification', 'Grow my business on the go', 'https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification', 'actioned', 0, '', NULL, NULL),
(39269, 180, 'tiktok_shopGTM_q3-2023_hasTikTok', 'Learn more', 'https://woocommerce.com/document/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_hasTikTok', 'unactioned', 1, '', NULL, NULL),
(39356, 181, 'tiktok_shopGTM_q3-2023_noTikTok', 'Learn more', 'https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_noTikTok', 'unactioned', 1, '', NULL, NULL),
(39875, 182, 'klaviyo_q3_2023', 'Integrate in minutes', 'https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q3_2023', 'unactioned', 1, '', NULL, NULL),
(41283, 183, 'wc_admin_BNPL_WCPay_Q3_2023', 'Enable buy now, pay later', 'https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_BNPL_WCPay_Q3_2023', 'actioned', 1, '', NULL, NULL),
(41284, 184, 'wc_admin_afterpay_WCPay_Q3_2023', 'Enable buy now, pay later', 'https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_afterpay_WCPay_Q3_2023', 'actioned', 1, '', NULL, NULL),
(42266, 186, 'Klarna_Enable_CTA_10OCT23', 'Enable Klarna', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminwp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments/#payment-methods', 'actioned', 1, '', NULL, NULL),
(42267, 186, 'Klarna_Update_CTA_10OCT23', 'Update WooPayments', 'http://qualstream.net/wp-admin/admin.php?page=wc-adminwp-admin/plugins.php?s=woocommercepayments&plugin_status=all', 'actioned', 0, '', NULL, NULL),
(43923, 187, 'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23', 'Save 35%', 'https://woocommerce.com/products/m2-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_US_inbox_note_q4_23', 'actioned', 0, '', NULL, NULL),
(43924, 188, 'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23', 'Save 35%', 'https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23', 'actioned', 0, '', NULL, NULL),
(43925, 189, 'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23', 'Save 35%', 'https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23', 'actioned', 0, '', NULL, NULL),
(44019, 191, 'wc_admin_WooPay_Q4_2023', 'Get started today', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminhttps://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Q4_2023', 'actioned', 1, '', NULL, NULL),
(44685, 193, 'paypal_paylater_g2_q4_22', 'Install PayPal Payments', 'https://woo.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22', 'unactioned', 1, '', NULL, NULL),
(45018, 192, 'wc_admin_WooPay_Oct30_2023', 'Get started today', 'https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Oct30_2023', 'actioned', 1, '', NULL, NULL),
(48121, 194, 'tap_to_pay_iphone_q4_2023_no_woopayments', 'Simplify my payments', 'https://woo.com/products/woopayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_no_woopayments', 'actioned', 0, '', NULL, NULL),
(48122, 195, 'tap_to_pay_iphone_q4_2023_with_woopayments', 'Set up Tap to Pay on iPhone', 'https://woo.com/document/woopayments/in-person-payments/tap-to-pay-iphone/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_with_woopayments', 'actioned', 0, '', NULL, NULL),
(54179, 199, 'custom_order_attribution_inbox_q1_2024', 'Find more clarity', 'https://woo.com/document/order-attribution-tracking/?utm_source=inbox_note&utm_medium=product&utm_campaign=custom_order_attribution_inbox_q1_2024', 'actioned', 0, '', NULL, NULL),
(56013, 88, 'learn-more', 'Find out more', 'https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/', 'unactioned', 1, '', NULL, NULL),
(56014, 88, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(56015, 89, 'learn-more', 'Find out more', 'https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/', 'unactioned', 1, '', NULL, NULL),
(56016, 89, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(57000, 200, 'wc_admin_UKpricingchange_WCPay_Q1_2024', 'See related fees for each country', 'https://woo.com/document/woopayments/fees-and-debits/fees/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_UKpricingchange_WCPay_Q1_2024#countries-in-europe', 'actioned', 1, '', NULL, NULL),
(57363, 197, 'amazon_pay_ext-link_q1-24', 'Register your account now', 'https://eu.amazonpayments.com/2024-uk-woopricepromoregistration?utm_campaign=woo_price_promo&utm_medium=EM&utm_source=direct&utm_content=cta&utm_creative=&ld=EMUKAPA-woo_price_promo-direct-24Q1', 'actioned', 0, '', NULL, NULL),
(58716, 57, 'wayflyer_bnpl_q4_2021', 'Level up with funding', 'https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021', 'actioned', 1, '', NULL, NULL),
(58717, 58, 'wc_shipping_mobile_app_usps_q4_2021', 'Get WooCommerce Shipping', 'https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021', 'actioned', 1, '', NULL, NULL),
(58718, 8, 'learn-more', 'Learn more', 'https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox', 'unactioned', 1, '', NULL, NULL),
(58719, 11, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'actioned', 1, '', NULL, NULL),
(58720, 17, 'optimizing-the-checkout-flow', 'Learn more', 'https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow', 'actioned', 1, '', NULL, NULL),
(58721, 28, 'qualitative-feedback-from-new-users', 'Share feedback', 'https://automattic.survey.fm/wc-pay-new', 'actioned', 1, '', NULL, NULL),
(58722, 29, 'share-feedback', 'Share feedback', 'http://automattic.survey.fm/paypal-feedback', 'unactioned', 1, '', NULL, NULL),
(58723, 32, 'get-started', 'Get started', 'https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started', 'actioned', 1, '', NULL, NULL),
(58724, 31, 'update-wc-subscriptions-3-0-15', 'View latest version', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper', 'actioned', 1, '', NULL, NULL),
(58725, 33, 'update-wc-core-5-4-0', 'How to update WooCommerce', 'https://docs.woocommerce.com/document/how-to-update-woocommerce/', 'actioned', 1, '', NULL, NULL),
(58726, 39, 'ppxo-pps-install-paypal-payments-1', 'View upgrade guide', 'https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/', 'actioned', 1, '', NULL, NULL),
(58727, 40, 'ppxo-pps-install-paypal-payments-2', 'View upgrade guide', 'https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/', 'actioned', 1, '', NULL, NULL),
(58728, 44, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'unactioned', 1, '', NULL, NULL),
(58729, 44, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58730, 45, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'unactioned', 1, '', NULL, NULL),
(58731, 45, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58732, 46, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'unactioned', 1, '', NULL, NULL),
(58733, 46, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58734, 47, 'learn-more', 'Learn more', 'https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more', 'unactioned', 1, '', NULL, NULL),
(58735, 47, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58736, 51, 'share-feedback', 'Share feedback', 'https://automattic.survey.fm/store-management', 'unactioned', 1, '', NULL, NULL),
(58737, 68, 'learn-more', 'Learn more', 'https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/', 'unactioned', 1, '', NULL, NULL),
(58738, 68, 'woocommerce-core-paypal-march-2022-dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58739, 69, 'learn-more', 'Learn more', 'https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/', 'unactioned', 1, '', NULL, NULL),
(58740, 69, 'dismiss', 'Dismiss', '', 'actioned', 0, '', NULL, NULL),
(58741, 70, 'pinterest_03_2022_update', 'Update Instructions', 'https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3', 'actioned', 0, '', NULL, NULL),
(58742, 78, 'store_setup_survey_survey_q2_2022_share_your_thoughts', 'Tell us how it’s going', 'https://automattic.survey.fm/store-setup-survey-2022', 'actioned', 0, '', NULL, NULL),
(58743, 111, 'needs-update-eway-payment-gateway-rin-action-button-2022-12-20', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin/update-core.php', 'unactioned', 0, '', NULL, NULL),
(58744, 111, 'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58745, 112, 'updated-eway-payment-gateway-rin-action-button-2022-12-20', 'See all updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin/update-core.php', 'unactioned', 0, '', NULL, NULL),
(58746, 112, 'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58747, 114, 'share-navigation-survey-feedback', 'Share feedback', 'https://automattic.survey.fm/new-ecommerce-plan-navigation', 'actioned', 1, '', NULL, NULL),
(58748, 139, 'woopay-beta-merchantrecruitment-activate-04MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'actioned', 1, '', NULL, NULL),
(58749, 139, 'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23', 'unactioned', 0, '', NULL, NULL),
(58750, 118, 'woocommerce-wcpay-march-2023-update-needed-button', 'See Blog Post', 'https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know', 'unactioned', 0, '', NULL, NULL),
(58751, 118, 'woocommerce-wcpay-march-2023-update-needed-dismiss-button', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58752, 119, 'tap_to_pay_iphone_q2_2023_no_wcpay', 'Simplify my payments', 'https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay', 'actioned', 0, '', NULL, NULL),
(58753, 121, 'extension-settings', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminupdate-core.php', 'unactioned', 0, '', NULL, NULL),
(58754, 121, 'dismiss', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58755, 140, 'woopay-beta-merchantrecruitment-update-WCPay-04MAY23', 'Update WooCommerce Payments', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 1, '', NULL, NULL),
(58756, 140, 'woopay-beta-merchantrecruitment-update-activate-04MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'actioned', 0, '', NULL, NULL),
(58757, 135, 'woopay-beta-existingmerchants-noaction-documentation-27APR23', 'Documentation', 'https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23', 'actioned', 1, '', NULL, NULL),
(58758, 136, 'woopay-beta-existingmerchants-update-WCPay-27APR23', 'Update WooCommerce Payments', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'actioned', 1, '', NULL, NULL),
(58759, 141, 'woopay-beta-merchantrecruitment-short-activate-04MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'actioned', 1, '', NULL, NULL),
(58760, 141, 'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23', 'actioned', 0, '', NULL, NULL),
(58761, 142, 'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23', 'Update WooCommerce Payments', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 1, '', NULL, NULL),
(58762, 142, 'woopay-beta-merchantrecruitment-short-update-activate-04MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'actioned', 0, '', NULL, NULL),
(58763, 143, 'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA', 'Activate WooPay Test A', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 1, '', NULL, NULL),
(58764, 143, 'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA', 'unactioned', 0, '', NULL, NULL),
(58765, 144, 'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB', 'Activate WooPay Test B', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 1, '', NULL, NULL),
(58766, 144, 'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA', 'unactioned', 0, '', NULL, NULL),
(58767, 145, 'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC', 'Activate WooPay Test C', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 1, '', NULL, NULL),
(58768, 145, 'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC', 'unactioned', 0, '', NULL, NULL),
(58769, 146, 'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD', 'Activate WooPay Test D', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 1, '', NULL, NULL),
(58770, 146, 'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD', 'unactioned', 0, '', NULL, NULL),
(58771, 147, 'woopay-beta-merchantrecruitment-short-activate-button-09MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 1, '', NULL, NULL),
(58772, 147, 'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23', 'Learn More', 'https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23', 'unactioned', 0, '', NULL, NULL),
(58773, 148, 'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23', 'Update WooCommerce Payments', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 1, '', NULL, NULL),
(58774, 148, 'woopay-beta-merchantrecruitment-short-update-activate-09MAY23', 'Activate WooPay', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout', 'unactioned', 0, '', NULL, NULL),
(58775, 153, 'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 0, '', NULL, NULL),
(58776, 153, 'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58777, 156, 'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 0, '', NULL, NULL),
(58778, 156, 'woocommerce-WCPayments-June-2023-updated-needed-Dismiss', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58779, 155, 'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 0, '', NULL, NULL),
(58780, 155, 'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58781, 154, 'woocommerce-WCReturnsWarranty-June-2023-updated-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 0, '', NULL, NULL),
(58782, 154, 'woocommerce-WCReturnsWarranty-June-2023-updated-needed', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58783, 158, 'woocommerce-WCOPC-June-2023-updated-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'actioned', 1, '', NULL, NULL),
(58784, 158, 'woocommerce-WCOPC-June-2023-updated-needed', 'Dismiss', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin#', 'actioned', 1, '', NULL, NULL),
(58785, 166, 'woocommerce-WCGC-July-2023-update-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 1, '', NULL, NULL),
(58786, 166, 'woocommerce-WCGC-July-2023-update-needed', 'Dismiss', '#', 'actioned', 1, '', NULL, NULL),
(58787, 167, 'learn-more', 'Learn more', 'https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage', 'unactioned', 0, '', NULL, NULL),
(58788, 168, 'plugin-list', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all', 'unactioned', 1, '', NULL, NULL),
(58789, 168, 'dismiss', 'Dismiss', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin', 'actioned', 0, '', NULL, NULL),
(58790, 171, 'woocommerce-WCStripe-Aug-2023-update-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminupdate-core.php?', 'unactioned', 1, '', NULL, NULL),
(58791, 171, 'dismiss', 'Dismiss', '#', 'actioned', 1, '', NULL, NULL),
(58792, 172, 'dismiss', 'Dismiss', '#', 'actioned', 1, '', NULL, NULL),
(58793, 173, 'woocommerce-WooPayments-Aug-2023-update-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminupdate-core.php?', 'unactioned', 1, '', NULL, NULL),
(58794, 173, 'dismiss', 'Dismiss', '#', 'actioned', 1, '', NULL, NULL),
(58795, 174, 'dismiss', 'Dismiss', '#', 'actioned', 1, '', NULL, NULL),
(58796, 176, 'avalara_q3-2023_noAvaTax', 'Automate my sales tax', 'https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax', 'unactioned', 1, '', NULL, NULL),
(58797, 179, 'woo-activation-survey-blockers-survey-button-22AUG23', 'Take our short survey', 'https://woocommerce.survey.fm/getting-started-with-woo', 'unactioned', 1, '', NULL, NULL),
(58798, 185, 'woocommerce-usermeta-Sept2023-productvendors', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminplugins.php', 'unactioned', 1, '', NULL, NULL),
(58799, 185, 'dismiss', 'Dismiss', 'https://qualstream.net/wp-admin/admin.php?page=wc-admin#', 'actioned', 1, '', NULL, NULL),
(58800, 190, 'woocommerce-STRIPE-Oct-2023-update-needed', 'See available updates', 'https://qualstream.net/wp-admin/admin.php?page=wc-adminupdate-core.php', 'unactioned', 1, '', NULL, NULL),
(58801, 190, 'dismiss', 'Dismiss', '#', 'actioned', 0, '', NULL, NULL),
(58802, 196, 'amazon-mcf-review-button-2023-12-07', 'Leave a review', 'https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07', 'actioned', 0, '', NULL, NULL),
(58803, 196, 'amazon-mcf-support-button-2023-12-07', 'Request support', 'https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07', 'actioned', 0, '', NULL, NULL),
(58804, 198, 'view_docs', 'Learn about Deposit schedules', 'https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds', 'unactioned', 0, '', NULL, NULL),
(58805, 201, 'airwallex_q1_2024', 'Get started with Airwallex', 'https://woocommerce.com/products/airwallexpayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=airwallex_q1_2024', 'actioned', 1, '', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_category_lookup`
--

CREATE TABLE `qs_wc_category_lookup` (
  `category_tree_id` bigint UNSIGNED NOT NULL,
  `category_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_wc_category_lookup`
--

INSERT INTO `qs_wc_category_lookup` (`category_tree_id`, `category_id`) VALUES
(15, 15),
(68, 68),
(70, 70),
(70, 77),
(70, 98),
(77, 77),
(84, 84),
(84, 94),
(84, 105),
(91, 91),
(94, 94),
(98, 98),
(105, 105);

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_customer_lookup`
--

CREATE TABLE `qs_wc_customer_lookup` (
  `customer_id` bigint UNSIGNED NOT NULL,
  `user_id` bigint UNSIGNED DEFAULT NULL,
  `username` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_download_log`
--

CREATE TABLE `qs_wc_download_log` (
  `download_log_id` bigint UNSIGNED NOT NULL,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint UNSIGNED NOT NULL,
  `user_id` bigint UNSIGNED DEFAULT NULL,
  `user_ip_address` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_order_coupon_lookup`
--

CREATE TABLE `qs_wc_order_coupon_lookup` (
  `order_id` bigint UNSIGNED NOT NULL,
  `coupon_id` bigint NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_order_product_lookup`
--

CREATE TABLE `qs_wc_order_product_lookup` (
  `order_item_id` bigint UNSIGNED NOT NULL,
  `order_id` bigint UNSIGNED NOT NULL,
  `product_id` bigint UNSIGNED NOT NULL,
  `variation_id` bigint UNSIGNED NOT NULL,
  `customer_id` bigint UNSIGNED DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_order_stats`
--

CREATE TABLE `qs_wc_order_stats` (
  `order_id` bigint UNSIGNED NOT NULL,
  `parent_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customer_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_order_tax_lookup`
--

CREATE TABLE `qs_wc_order_tax_lookup` (
  `order_id` bigint UNSIGNED NOT NULL,
  `tax_rate_id` bigint UNSIGNED NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_product_meta_lookup`
--

CREATE TABLE `qs_wc_product_meta_lookup` (
  `product_id` bigint NOT NULL,
  `sku` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
  `rating_count` bigint DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint DEFAULT '0',
  `tax_status` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable',
  `tax_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_reserved_stock`
--

CREATE TABLE `qs_wc_reserved_stock` (
  `order_id` bigint NOT NULL,
  `product_id` bigint NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT '0',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_tax_rate_classes`
--

CREATE TABLE `qs_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint UNSIGNED NOT NULL,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `qs_wc_tax_rate_classes`
--

INSERT INTO `qs_wc_tax_rate_classes` (`tax_rate_class_id`, `name`, `slug`) VALUES
(1, 'Reduced rate', 'reduced-rate'),
(2, 'Zero rate', 'zero-rate');

-- --------------------------------------------------------

--
-- Table structure for table `qs_wc_webhooks`
--

CREATE TABLE `qs_wc_webhooks` (
  `webhook_id` bigint UNSIGNED NOT NULL,
  `status` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint UNSIGNED NOT NULL,
  `delivery_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint NOT NULL,
  `failure_count` smallint NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_api_keys`
--

CREATE TABLE `qs_woocommerce_api_keys` (
  `key_id` bigint UNSIGNED NOT NULL,
  `user_id` bigint UNSIGNED NOT NULL,
  `description` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_attribute_taxonomies`
--

CREATE TABLE `qs_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint UNSIGNED NOT NULL,
  `attribute_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_downloadable_product_permissions`
--

CREATE TABLE `qs_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint UNSIGNED NOT NULL,
  `download_id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint UNSIGNED NOT NULL,
  `order_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `order_key` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint UNSIGNED DEFAULT NULL,
  `downloads_remaining` varchar(9) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_log`
--

CREATE TABLE `qs_woocommerce_log` (
  `log_id` bigint UNSIGNED NOT NULL,
  `timestamp` datetime NOT NULL,
  `level` smallint NOT NULL,
  `source` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_order_itemmeta`
--

CREATE TABLE `qs_woocommerce_order_itemmeta` (
  `meta_id` bigint UNSIGNED NOT NULL,
  `order_item_id` bigint UNSIGNED NOT NULL,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_order_items`
--

CREATE TABLE `qs_woocommerce_order_items` (
  `order_item_id` bigint UNSIGNED NOT NULL,
  `order_item_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_payment_tokenmeta`
--

CREATE TABLE `qs_woocommerce_payment_tokenmeta` (
  `meta_id` bigint UNSIGNED NOT NULL,
  `payment_token_id` bigint UNSIGNED NOT NULL,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_payment_tokens`
--

CREATE TABLE `qs_woocommerce_payment_tokens` (
  `token_id` bigint UNSIGNED NOT NULL,
  `gateway_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_sessions`
--

CREATE TABLE `qs_woocommerce_sessions` (
  `session_id` bigint UNSIGNED NOT NULL,
  `session_key` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_shipping_zones`
--

CREATE TABLE `qs_woocommerce_shipping_zones` (
  `zone_id` bigint UNSIGNED NOT NULL,
  `zone_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_shipping_zone_locations`
--

CREATE TABLE `qs_woocommerce_shipping_zone_locations` (
  `location_id` bigint UNSIGNED NOT NULL,
  `zone_id` bigint UNSIGNED NOT NULL,
  `location_code` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_shipping_zone_methods`
--

CREATE TABLE `qs_woocommerce_shipping_zone_methods` (
  `zone_id` bigint UNSIGNED NOT NULL,
  `instance_id` bigint UNSIGNED NOT NULL,
  `method_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint UNSIGNED NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_tax_rates`
--

CREATE TABLE `qs_woocommerce_tax_rates` (
  `tax_rate_id` bigint UNSIGNED NOT NULL,
  `tax_rate_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint UNSIGNED NOT NULL,
  `tax_rate_compound` int NOT NULL DEFAULT '0',
  `tax_rate_shipping` int NOT NULL DEFAULT '1',
  `tax_rate_order` bigint UNSIGNED NOT NULL,
  `tax_rate_class` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `qs_woocommerce_tax_rate_locations`
--

CREATE TABLE `qs_woocommerce_tax_rate_locations` (
  `location_id` bigint UNSIGNED NOT NULL,
  `location_code` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint UNSIGNED NOT NULL,
  `location_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `qs_actionscheduler_actions`
--
ALTER TABLE `qs_actionscheduler_actions`
  ADD PRIMARY KEY (`action_id`),
  ADD KEY `hook` (`hook`),
  ADD KEY `status` (`status`),
  ADD KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  ADD KEY `args` (`args`),
  ADD KEY `group_id` (`group_id`),
  ADD KEY `last_attempt_gmt` (`last_attempt_gmt`),
  ADD KEY `claim_id` (`claim_id`);

--
-- Indexes for table `qs_actionscheduler_claims`
--
ALTER TABLE `qs_actionscheduler_claims`
  ADD PRIMARY KEY (`claim_id`),
  ADD KEY `date_created_gmt` (`date_created_gmt`);

--
-- Indexes for table `qs_actionscheduler_groups`
--
ALTER TABLE `qs_actionscheduler_groups`
  ADD PRIMARY KEY (`group_id`),
  ADD KEY `slug` (`slug`(191));

--
-- Indexes for table `qs_actionscheduler_logs`
--
ALTER TABLE `qs_actionscheduler_logs`
  ADD PRIMARY KEY (`log_id`),
  ADD KEY `action_id` (`action_id`),
  ADD KEY `log_date_gmt` (`log_date_gmt`);

--
-- Indexes for table `qs_bookit_appointments`
--
ALTER TABLE `qs_bookit_appointments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_service_id` (`service_id`),
  ADD KEY `idx_staff_id` (`staff_id`),
  ADD KEY `idx_customer_id` (`customer_id`),
  ADD KEY `idx_date_timestamp` (`date_timestamp`),
  ADD KEY `idx_start_time` (`start_time`),
  ADD KEY `idx_end_time` (`end_time`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `qs_bookit_categories`
--
ALTER TABLE `qs_bookit_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `qs_bookit_coupons`
--
ALTER TABLE `qs_bookit_coupons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `qs_bookit_customers`
--
ALTER TABLE `qs_bookit_customers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_wp_user_id` (`wp_user_id`);

--
-- Indexes for table `qs_bookit_discounts`
--
ALTER TABLE `qs_bookit_discounts`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_is_active` (`is_active`);

--
-- Indexes for table `qs_bookit_payments`
--
ALTER TABLE `qs_bookit_payments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_appointment_id` (`appointment_id`),
  ADD KEY `idx_coupon_id` (`coupon_id`),
  ADD KEY `idx_discount_id` (`discount_id`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `qs_bookit_services`
--
ALTER TABLE `qs_bookit_services`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_category_id` (`category_id`);

--
-- Indexes for table `qs_bookit_staff`
--
ALTER TABLE `qs_bookit_staff`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `qs_bookit_staff_services`
--
ALTER TABLE `qs_bookit_staff_services`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_staff_id` (`staff_id`),
  ADD KEY `idx_service_id` (`service_id`);

--
-- Indexes for table `qs_bookit_staff_working_hours`
--
ALTER TABLE `qs_bookit_staff_working_hours`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_staff_id` (`staff_id`);

--
-- Indexes for table `qs_commentmeta`
--
ALTER TABLE `qs_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `qs_comments`
--
ALTER TABLE `qs_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10)),
  ADD KEY `woo_idx_comment_type` (`comment_type`);

--
-- Indexes for table `qs_links`
--
ALTER TABLE `qs_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `qs_options`
--
ALTER TABLE `qs_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `qs_postmeta`
--
ALTER TABLE `qs_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `qs_posts`
--
ALTER TABLE `qs_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`);

--
-- Indexes for table `qs_revslider_css`
--
ALTER TABLE `qs_revslider_css`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_css_bkp`
--
ALTER TABLE `qs_revslider_css_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_layer_animations`
--
ALTER TABLE `qs_revslider_layer_animations`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_layer_animations_bkp`
--
ALTER TABLE `qs_revslider_layer_animations_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_navigations`
--
ALTER TABLE `qs_revslider_navigations`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_navigations_bkp`
--
ALTER TABLE `qs_revslider_navigations_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_sliders`
--
ALTER TABLE `qs_revslider_sliders`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_sliders_bkp`
--
ALTER TABLE `qs_revslider_sliders_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_slides`
--
ALTER TABLE `qs_revslider_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_slides_bkp`
--
ALTER TABLE `qs_revslider_slides_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_static_slides`
--
ALTER TABLE `qs_revslider_static_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_revslider_static_slides_bkp`
--
ALTER TABLE `qs_revslider_static_slides_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `qs_sbi_instagram_feeds_posts`
--
ALTER TABLE `qs_sbi_instagram_feeds_posts`
  ADD PRIMARY KEY (`record_id`),
  ADD KEY `hashtag` (`hashtag`(100)),
  ADD KEY `feed_id` (`feed_id`(100));

--
-- Indexes for table `qs_sbi_instagram_feed_locator`
--
ALTER TABLE `qs_sbi_instagram_feed_locator`
  ADD PRIMARY KEY (`id`),
  ADD KEY `feed_id` (`feed_id`),
  ADD KEY `post_id` (`post_id`);

--
-- Indexes for table `qs_sbi_instagram_posts`
--
ALTER TABLE `qs_sbi_instagram_posts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `qs_termmeta`
--
ALTER TABLE `qs_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `qs_terms`
--
ALTER TABLE `qs_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `qs_term_relationships`
--
ALTER TABLE `qs_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `qs_term_taxonomy`
--
ALTER TABLE `qs_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `qs_usermeta`
--
ALTER TABLE `qs_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `qs_users`
--
ALTER TABLE `qs_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- Indexes for table `qs_wc_admin_notes`
--
ALTER TABLE `qs_wc_admin_notes`
  ADD PRIMARY KEY (`note_id`);

--
-- Indexes for table `qs_wc_admin_note_actions`
--
ALTER TABLE `qs_wc_admin_note_actions`
  ADD PRIMARY KEY (`action_id`),
  ADD KEY `note_id` (`note_id`);

--
-- Indexes for table `qs_wc_category_lookup`
--
ALTER TABLE `qs_wc_category_lookup`
  ADD PRIMARY KEY (`category_tree_id`,`category_id`);

--
-- Indexes for table `qs_wc_customer_lookup`
--
ALTER TABLE `qs_wc_customer_lookup`
  ADD PRIMARY KEY (`customer_id`),
  ADD UNIQUE KEY `user_id` (`user_id`),
  ADD KEY `email` (`email`);

--
-- Indexes for table `qs_wc_download_log`
--
ALTER TABLE `qs_wc_download_log`
  ADD PRIMARY KEY (`download_log_id`),
  ADD KEY `permission_id` (`permission_id`),
  ADD KEY `timestamp` (`timestamp`);

--
-- Indexes for table `qs_wc_order_coupon_lookup`
--
ALTER TABLE `qs_wc_order_coupon_lookup`
  ADD PRIMARY KEY (`order_id`,`coupon_id`),
  ADD KEY `coupon_id` (`coupon_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `qs_wc_order_product_lookup`
--
ALTER TABLE `qs_wc_order_product_lookup`
  ADD PRIMARY KEY (`order_item_id`),
  ADD KEY `order_id` (`order_id`),
  ADD KEY `product_id` (`product_id`),
  ADD KEY `customer_id` (`customer_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `qs_wc_order_stats`
--
ALTER TABLE `qs_wc_order_stats`
  ADD PRIMARY KEY (`order_id`),
  ADD KEY `date_created` (`date_created`),
  ADD KEY `customer_id` (`customer_id`),
  ADD KEY `status` (`status`(191));

--
-- Indexes for table `qs_wc_order_tax_lookup`
--
ALTER TABLE `qs_wc_order_tax_lookup`
  ADD PRIMARY KEY (`order_id`,`tax_rate_id`),
  ADD KEY `tax_rate_id` (`tax_rate_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `qs_wc_product_meta_lookup`
--
ALTER TABLE `qs_wc_product_meta_lookup`
  ADD PRIMARY KEY (`product_id`),
  ADD KEY `virtual` (`virtual`),
  ADD KEY `downloadable` (`downloadable`),
  ADD KEY `stock_status` (`stock_status`),
  ADD KEY `stock_quantity` (`stock_quantity`),
  ADD KEY `onsale` (`onsale`),
  ADD KEY `min_max_price` (`min_price`,`max_price`);

--
-- Indexes for table `qs_wc_reserved_stock`
--
ALTER TABLE `qs_wc_reserved_stock`
  ADD PRIMARY KEY (`order_id`,`product_id`);

--
-- Indexes for table `qs_wc_tax_rate_classes`
--
ALTER TABLE `qs_wc_tax_rate_classes`
  ADD PRIMARY KEY (`tax_rate_class_id`),
  ADD UNIQUE KEY `slug` (`slug`(191));

--
-- Indexes for table `qs_wc_webhooks`
--
ALTER TABLE `qs_wc_webhooks`
  ADD PRIMARY KEY (`webhook_id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `qs_woocommerce_api_keys`
--
ALTER TABLE `qs_woocommerce_api_keys`
  ADD PRIMARY KEY (`key_id`),
  ADD KEY `consumer_key` (`consumer_key`),
  ADD KEY `consumer_secret` (`consumer_secret`);

--
-- Indexes for table `qs_woocommerce_attribute_taxonomies`
--
ALTER TABLE `qs_woocommerce_attribute_taxonomies`
  ADD PRIMARY KEY (`attribute_id`),
  ADD KEY `attribute_name` (`attribute_name`(20));

--
-- Indexes for table `qs_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `qs_woocommerce_downloadable_product_permissions`
  ADD PRIMARY KEY (`permission_id`),
  ADD KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  ADD KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  ADD KEY `order_id` (`order_id`),
  ADD KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`);

--
-- Indexes for table `qs_woocommerce_log`
--
ALTER TABLE `qs_woocommerce_log`
  ADD PRIMARY KEY (`log_id`),
  ADD KEY `level` (`level`);

--
-- Indexes for table `qs_woocommerce_order_itemmeta`
--
ALTER TABLE `qs_woocommerce_order_itemmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `order_item_id` (`order_item_id`),
  ADD KEY `meta_key` (`meta_key`(32));

--
-- Indexes for table `qs_woocommerce_order_items`
--
ALTER TABLE `qs_woocommerce_order_items`
  ADD PRIMARY KEY (`order_item_id`),
  ADD KEY `order_id` (`order_id`);

--
-- Indexes for table `qs_woocommerce_payment_tokenmeta`
--
ALTER TABLE `qs_woocommerce_payment_tokenmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `payment_token_id` (`payment_token_id`),
  ADD KEY `meta_key` (`meta_key`(32));

--
-- Indexes for table `qs_woocommerce_payment_tokens`
--
ALTER TABLE `qs_woocommerce_payment_tokens`
  ADD PRIMARY KEY (`token_id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `qs_woocommerce_sessions`
--
ALTER TABLE `qs_woocommerce_sessions`
  ADD PRIMARY KEY (`session_id`),
  ADD UNIQUE KEY `session_key` (`session_key`);

--
-- Indexes for table `qs_woocommerce_shipping_zones`
--
ALTER TABLE `qs_woocommerce_shipping_zones`
  ADD PRIMARY KEY (`zone_id`);

--
-- Indexes for table `qs_woocommerce_shipping_zone_locations`
--
ALTER TABLE `qs_woocommerce_shipping_zone_locations`
  ADD PRIMARY KEY (`location_id`),
  ADD KEY `location_id` (`location_id`),
  ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));

--
-- Indexes for table `qs_woocommerce_shipping_zone_methods`
--
ALTER TABLE `qs_woocommerce_shipping_zone_methods`
  ADD PRIMARY KEY (`instance_id`);

--
-- Indexes for table `qs_woocommerce_tax_rates`
--
ALTER TABLE `qs_woocommerce_tax_rates`
  ADD PRIMARY KEY (`tax_rate_id`),
  ADD KEY `tax_rate_country` (`tax_rate_country`),
  ADD KEY `tax_rate_state` (`tax_rate_state`(2)),
  ADD KEY `tax_rate_class` (`tax_rate_class`(10)),
  ADD KEY `tax_rate_priority` (`tax_rate_priority`);

--
-- Indexes for table `qs_woocommerce_tax_rate_locations`
--
ALTER TABLE `qs_woocommerce_tax_rate_locations`
  ADD PRIMARY KEY (`location_id`),
  ADD KEY `tax_rate_id` (`tax_rate_id`),
  ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `qs_actionscheduler_actions`
--
ALTER TABLE `qs_actionscheduler_actions`
  MODIFY `action_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_actionscheduler_claims`
--
ALTER TABLE `qs_actionscheduler_claims`
  MODIFY `claim_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11574;

--
-- AUTO_INCREMENT for table `qs_actionscheduler_groups`
--
ALTER TABLE `qs_actionscheduler_groups`
  MODIFY `group_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `qs_actionscheduler_logs`
--
ALTER TABLE `qs_actionscheduler_logs`
  MODIFY `log_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_appointments`
--
ALTER TABLE `qs_bookit_appointments`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_categories`
--
ALTER TABLE `qs_bookit_categories`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_coupons`
--
ALTER TABLE `qs_bookit_coupons`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_customers`
--
ALTER TABLE `qs_bookit_customers`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_discounts`
--
ALTER TABLE `qs_bookit_discounts`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_payments`
--
ALTER TABLE `qs_bookit_payments`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_services`
--
ALTER TABLE `qs_bookit_services`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_staff`
--
ALTER TABLE `qs_bookit_staff`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_staff_services`
--
ALTER TABLE `qs_bookit_staff_services`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_bookit_staff_working_hours`
--
ALTER TABLE `qs_bookit_staff_working_hours`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_commentmeta`
--
ALTER TABLE `qs_commentmeta`
  MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_comments`
--
ALTER TABLE `qs_comments`
  MODIFY `comment_ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118;

--
-- AUTO_INCREMENT for table `qs_links`
--
ALTER TABLE `qs_links`
  MODIFY `link_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_options`
--
ALTER TABLE `qs_options`
  MODIFY `option_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=166822;

--
-- AUTO_INCREMENT for table `qs_postmeta`
--
ALTER TABLE `qs_postmeta`
  MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5420;

--
-- AUTO_INCREMENT for table `qs_posts`
--
ALTER TABLE `qs_posts`
  MODIFY `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7321;

--
-- AUTO_INCREMENT for table `qs_revslider_css`
--
ALTER TABLE `qs_revslider_css`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110;

--
-- AUTO_INCREMENT for table `qs_revslider_css_bkp`
--
ALTER TABLE `qs_revslider_css_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT for table `qs_revslider_layer_animations`
--
ALTER TABLE `qs_revslider_layer_animations`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_layer_animations_bkp`
--
ALTER TABLE `qs_revslider_layer_animations_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_navigations`
--
ALTER TABLE `qs_revslider_navigations`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_navigations_bkp`
--
ALTER TABLE `qs_revslider_navigations_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_sliders`
--
ALTER TABLE `qs_revslider_sliders`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `qs_revslider_sliders_bkp`
--
ALTER TABLE `qs_revslider_sliders_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_slides`
--
ALTER TABLE `qs_revslider_slides`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `qs_revslider_slides_bkp`
--
ALTER TABLE `qs_revslider_slides_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_revslider_static_slides`
--
ALTER TABLE `qs_revslider_static_slides`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `qs_revslider_static_slides_bkp`
--
ALTER TABLE `qs_revslider_static_slides_bkp`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_sbi_instagram_feeds_posts`
--
ALTER TABLE `qs_sbi_instagram_feeds_posts`
  MODIFY `record_id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_sbi_instagram_feed_locator`
--
ALTER TABLE `qs_sbi_instagram_feed_locator`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_sbi_instagram_posts`
--
ALTER TABLE `qs_sbi_instagram_posts`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_termmeta`
--
ALTER TABLE `qs_termmeta`
  MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `qs_terms`
--
ALTER TABLE `qs_terms`
  MODIFY `term_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=112;

--
-- AUTO_INCREMENT for table `qs_term_taxonomy`
--
ALTER TABLE `qs_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=112;

--
-- AUTO_INCREMENT for table `qs_usermeta`
--
ALTER TABLE `qs_usermeta`
  MODIFY `umeta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;

--
-- AUTO_INCREMENT for table `qs_users`
--
ALTER TABLE `qs_users`
  MODIFY `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `qs_wc_admin_notes`
--
ALTER TABLE `qs_wc_admin_notes`
  MODIFY `note_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=202;

--
-- AUTO_INCREMENT for table `qs_wc_admin_note_actions`
--
ALTER TABLE `qs_wc_admin_note_actions`
  MODIFY `action_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58806;

--
-- AUTO_INCREMENT for table `qs_wc_customer_lookup`
--
ALTER TABLE `qs_wc_customer_lookup`
  MODIFY `customer_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_wc_download_log`
--
ALTER TABLE `qs_wc_download_log`
  MODIFY `download_log_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_wc_tax_rate_classes`
--
ALTER TABLE `qs_wc_tax_rate_classes`
  MODIFY `tax_rate_class_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `qs_wc_webhooks`
--
ALTER TABLE `qs_wc_webhooks`
  MODIFY `webhook_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_api_keys`
--
ALTER TABLE `qs_woocommerce_api_keys`
  MODIFY `key_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_attribute_taxonomies`
--
ALTER TABLE `qs_woocommerce_attribute_taxonomies`
  MODIFY `attribute_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `qs_woocommerce_downloadable_product_permissions`
  MODIFY `permission_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_log`
--
ALTER TABLE `qs_woocommerce_log`
  MODIFY `log_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_order_itemmeta`
--
ALTER TABLE `qs_woocommerce_order_itemmeta`
  MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_order_items`
--
ALTER TABLE `qs_woocommerce_order_items`
  MODIFY `order_item_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_payment_tokenmeta`
--
ALTER TABLE `qs_woocommerce_payment_tokenmeta`
  MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_payment_tokens`
--
ALTER TABLE `qs_woocommerce_payment_tokens`
  MODIFY `token_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_sessions`
--
ALTER TABLE `qs_woocommerce_sessions`
  MODIFY `session_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `qs_woocommerce_shipping_zones`
--
ALTER TABLE `qs_woocommerce_shipping_zones`
  MODIFY `zone_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_shipping_zone_locations`
--
ALTER TABLE `qs_woocommerce_shipping_zone_locations`
  MODIFY `location_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_shipping_zone_methods`
--
ALTER TABLE `qs_woocommerce_shipping_zone_methods`
  MODIFY `instance_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_tax_rates`
--
ALTER TABLE `qs_woocommerce_tax_rates`
  MODIFY `tax_rate_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `qs_woocommerce_tax_rate_locations`
--
ALTER TABLE `qs_woocommerce_tax_rate_locations`
  MODIFY `location_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `qs_wc_download_log`
--
ALTER TABLE `qs_wc_download_log`
  ADD CONSTRAINT `fk_qs_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `qs_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE;
COMMIT;

/*!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 */;
